Expression to hide the row in the SSRS report when value is 0

Hi to All,

I want to hide the entire row of a table when the value is null .Is there any expression to hide the row, so there will be no white space is visible on the report.Please help

Hi,

Try this…

write the below expression in row visibilty expressions.(Check whether you are writing the expression for visible or hidden.)

=IIF(Fields!SlaesAmount.Value= 0,“Yes”,“No”)

thanks for the help [:D]