문제

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.

도움이 되었습니까?

해결책

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

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top