I need to hide a column if all the rows in the column are empty (spaces).
In this case, it col3should be hidden because there are no values in the column.
col1 col2 col3
v1 v4
v2
v3
I use the following expression in column properties Hidden:
=IIF(Fields!Test5.Value = "",TRUE,FALSE)
This expression works, but it discards every empty field (empty field), even the entire column is not empty. It should hide the column only when there are no values.
source
share