I have report as table
component. I want to apply the following logic:
If value INCID
is not null, the border should be "Solid
" (meaning it should have border),
If value INCID
is null, the border should be "None
" (meaning the table should have no border).
I used =IIf(IsNothing(Fields!INCID.Value) = 1,"Solid","None")
but it doesn't work. Where could be the problem? If I apply this and save this settings and then go back to the expression, it is not saved.
OK, this seemed to be the problem.