I am using SSRS 2012, and creating a very simple matrix. When there is no data in the rows, the row header still displays.
I have tried setting conditional formatting to hide the tablix in tablix properties, to equal what I actually want in the table which is the same expression I have for row group visibility.
IIF(Fields!Name.Value = "Smoke Detectors" OR Fields!Name.Value = "Smoke Detectors - Air", false, true)I have also tried using Count() and CountRows() with the value inside the parentheses being (Fields!Name.Value = "Smoke Detectors") OR (Fields!Name.Value = "Smoke Detectors - Air") in the Tablix properties visibility without any luck.
What I get when the report renders when it really should show nothing, since I do not have the data listed above, is the row headers below.
I know this should be really simple but it has cost me a lot of time. I would greatly appreciate any suggestions.