I've 2 checkboxs(actually two rectangles) in a report page. The object from the database, returns boolean value. If It returns yes, I want to checked "Yes" or not, the other one must be checked.
I'm newbie in RDL reporting project. How can I add an expression for this?
=Iif(Fields!<<fieldname>>.Value = True, 1, 0)
(obviously replace <> with the name of your fieldHere's a snap of how to do it:
What this will do is evaluate that Iif statement and, if your field is true, will return a 1. The indicator will see that 1 and place a Green tick in the Rectangle.
Hope that helps, drop a comment here if you struggle.