Hi
There are some field in my datasource of type boolean. the values of these fields, in report, is written as "True" or "False". I want to write "YES" if true and "NO" if false . How can i do this ??
thanks for help
bye
Hi,
You can use an expression like =If(Fields.BoolValue, “YES”, “NO”)
Hope it helps.
Thanks,
Leo
hi Leo
thanks for the wonderful answer.
Can i do same with string: If(Field.InternalExternal = "I","Yes","No") ???
Sure, you can do that too.