i am working on rdlc report , i have a column in rdlc report , and i want if there is true value , return me "YES" and if there is false return "NO" i have tried the following code but it not working
=iif(Field!Application.value)="True","Yes","No"))
thanks in advance.
You can use the Code property of the report. Right-click a blank space outside your report and click Report Properties or click the Report menu and click report properties. Save this answer.
right click on your column in rdlc select column visibility.
If checkbox is true I set Chr(254) else show unchecked checkbox using Chr(168) . Chr(254) : This is decimal value for Wingdings character 254 its shows like checked check box image. Chr(168) : This is decimal value for Wingdings character 168 its shows like rectangle box like unchecked check box image.
I thought it was like this
=IIf(Field!Application.Value = true,"yes","no")
1) 'V' is supposed to be capital 2) parenthesis should be at the end.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With