Have code to show or hide rows based on a value in one of the cells for that row (In SQL Reporting Services)
I either get all the results hidden or none of the results hidden
Tried this
=IIF(Fields!CommodityCode.Value = "BOP",False,True)
Field Name is correct and BOP
is a valid value for the field
=IIF(Fields!CommodityCode.Value = "BOP",False,True)
When the value BOP
is in the cell then that row should show. Any other rows where the value of that cell is NOT BOP
should be hidden.
dataset
forCommodityCode = "BOP"
.