cancel
Showing results for 
Search instead for 
Did you mean: 

BO4 - suppressing rows with empty/null column values automatically - possible?

former_member272336
Participant
0 Kudos

Hi,

Have a report with 2 rows in it as can see from second row ,blank in second column.

Whilst can apply filters, is there a way to stop such columns appearing automatically?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Create a variable Null_Filter

= IF ISNULL([DIMENSION]) then 0 else 1

Then create a block level filter on this variable to select only 1

Answers (1)

Answers (1)

dennis_scoville4
Active Contributor
0 Kudos

If you want to filter this data out in the Universe, so that no end analytic/report will have that data available, you can add to the WHERE clause of the Measure:

     Value IS NOT NULL (or whatever nomenclature is requied for the flavor of SQL being used)

     Or

     Value <> '' (this is also represenation of NULL in some SQL)

However, if you want this data available in the Universe and just want to suppress it in a Web Intelligence report, for instance, you can use the properties in the user interface tool to suppress that data.

former_member272336
Participant
0 Kudos

Thanks for replies.