I'd like to only display certain rows on my report using SSRS if the field value of EMID=3 or EMID=Null. Or if it would be easier, to hide rows where EMID in (1,2)
I right + clicked the row -> Row Visibility -> Show or Hide Based on an Expression and created this expression:
=IIF(Fields!EMID.Value=1 Or Fields!EMID.Value=2,True,False)
But that does not hide the rows I am looking to hide. Any suggestions on what I did wrong?
Thanks,