Question

How can I create a checkbox in order to display it on SSRS report. We are using an SQL query in order to fetch the data from the database. There is a field named "Revised" which returns either '0' or '1'. I need to display the output in form of checkbox.

Was it helpful?

Solution

Thanks Eric for sharing this useful link. I did the same as it was suggested. For the particular textbox I used FontFamily : WingDings and then added the following expression.

=IIF(First(Fields!PdfOnly.Value, "DataSet1") =1 , chr(254), chr(111))

OTHER TIPS

Expression: =Microsoft.VisualBasic.Interaction.iif(Fields!IsActive.Value = "1", Microsoft.VisualBasic.Strings.chr(254), Microsoft.VisualBasic.Strings.chr(111))

Change Font To: Wingdings, 10pt, Default, Default, Default

Done

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top