I have an SSRS report, which has rows of exam results, exam name in one column, result in the other. If the exam name column contains a specific exam name I'd like to show an image, however, it seems to hide all the time when using the following show/hide
=iif(Fields!txtResultName.Value = "VR*",True,False)
It seems to always hide weather the VR record is there or not.
The design view looks like this:
I also have the following visibility expression on the 2nd row to hide the 'VR*' exam or any other exam if no results exists.
=iif(len(Fields!txtResult.Value) = 0,True,False)