I have a report which have a tablix within a tablix as shown here:
The second Tablix I need to hide when the rows are less than 13. I have the following expression in the group details property hidden :
=IIf(RunningValue(Fields!blokno.Value, CountDistinct, "Tablix5") >= 13, False, True)
However, it does not work. The header row still shows. What am I doing wrong?