Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to show only null values - straight table

I have a straight table and I wan't to filter the table so that only the null values for the field 'Maturity Date' are shown. I wan't to do this as some sort of calculation or expression rather then using the load script or a button. Any ideas?

TIA

Screen Shot 2016-09-08 at 3.19.48 PM.png

1 Solution

Accepted Solutions
sunny_talwar

May be a calculated Dimension:

If(Len(Trim([Maturity Date])) = 0, 'Null', Null())

View solution in original post

3 Replies
sunny_talwar

May be a calculated Dimension:

If(Len(Trim([Maturity Date])) = 0, 'Null', Null())

Anonymous
Not applicable
Author

Apply set analysis with

{$<Maturity Date-={*}>} in the expression

effinty2112
Master
Master

Hi Ben,

                    If you have an ID field in your fact table try this as a calculated dimension:

=Aggr(Alt([Maturity Date],'Null'),ID)

If you pick 'Null' in this calculated dimension Qlikview will select the IDs for which there is no Maturity Date.

good luck

Andrew