Reputation: 1785
My code in the first text box in a tablix row is as follows:
=IIF(CountRows("DataSet") = 0, "Row Label", (IIF(RowNumber("ThisTablix") = 1, "Row Label", "")))
My understanding of the logic is that:
However when I attempt to run the report without any data, the row does not seem to be appearing.
Any pointers would be appreciated.
Upvotes: 0
Views: 2073
Reputation: 2870
I think your point 1 is incorrect. If zero rows are returned, your textbox will never be evaluated. Look for the NoRowsMessage property, and set it. Also see this question.
Upvotes: 3