I’m presenting data in a matrix (a crosstab). To ensure that all rows are represented I right-joined with a table of the columns that are to appear. This also (expectedly) produces a blank row. Identifying the blank row is easy enough; just test for null in one of the fields. But filtering the data causes a reversion to original behaviour, which is columns only where there is data.
Is there a way to suppress a row? I mean, presumably there is, but I can’t seem to find it in help.
Figured it out myself. There’s a “Row Visibility…” dialog. Right-click the row handle.
This produces the dialog.
You want to show or hide based on an expression. In this case
does the trick. Originally I checked for null
but that doesn’t work. Somehow it gets converted to an empty string.