I currently in between the development of a report. I have set of tables that needs to be hidden incase if values are not present.
As seen in the image, the second set of table should be hidden when there is no data in it. It shows the data obtained from the second row of the table.
=IIF(LOOKUP(2,Fields!RowNo.Value,Fields!SeqNo1.Value,"dsContractReceivablePerc")=0,TRUE,FALSE)
This was the condition that I gave for hiding the table.
But after deployment when I viewed my report, I found that even though my table was getting hidden, there was a large empty space left in its space.
Could anyone help me out here? Am I missing anything?