Frage

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.

War es hilfreich?

Lösung

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))

Andere Tipps

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top