I am trying to sum only the visible rows only in SSRS and I have read a few forums that say you need to put:
=Sum( iif( <The condition of Visibility.Hidden expression>, 0, Fields!A.Value))
However I am unsure on how this works, my visibility code is:
=iif(Fields!Sub.Value = "Ins", True, IIF(Fields!Sub.Value = "Ins - Int", True, False))
When I add this into the above 1st code i get #ERROR.
Appreciate any help.
Thanks