reporting services - How do I display headers in reports even if the dataset is empty -
i have simple report has structure
the report spans horizontal different movie titles dataset.
the issue i'm having when dataset returns empty set of results report single empty cell.
is there way have row headers display if dataset returns null? or there better way this?
unlike answer, have on title column group.
right-click title column group, , click add group > adjacent before... or adjacent after...
text answer:
you can add row outside of outermost group right under tablix header row.
{image}
set row visibility show or hide based on expression. expression like:
=iif(countrows("dataset1") > 0, true, false)
when there no data, table show headers , empty row.
{another image}
when there data, empty row hidden.
Comments
Post a Comment