Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Drill down on null/missing dimension

     Hi

I have a bar chart which shows one dimension member with a - which is where the data has not linked to the dimension table as it is missing in the dimension table.  Is there a way to:

1. Change the name of this to Unknown say - you can do this in a straight table using the presenation tab.

2. drill down on the - member.

Thanks

1 Reply
Not applicable
Author

Try using an IF statement in the LOAD statement in the script, e.g.:

LOAD

     ...,

     ...,

     if(IsNull(Dimension) OR Trim(Dimension)='', 'Unknown', Dimension) as Dimension,

     ...

FROM

     ....;