Hi guys I have a simple IFF expression
=IIF(Fields!MYCOLUMN.Value = true, "Yes", "No")
which is working fine, except other rows that have a blank or NULL in it's place are returning "No". Is there a way to adapt my expression so that it ignores Null values? I have tried incorporating ISNOTHING but having trouble getting the syntax right.
=IIF(ISNOTHING(Fields!MYCOLUMN.Value), "", IIF(Fields!MYCOLUMN.Value, "Yes", "No"))just to illustrate how to do it using ISNOTHING. Also note there is not need to test for= trueas that is implicitly what IIF does. - Alan Schofield