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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can a dimension reference an expression value

I am trying to add a calculated dimension such that if the evaluated expression for my "Expressions" column is a certain value, I want the dimension to display null so that I can supress it and the row will not display. There doesn't seem to be a way to do this and for Expression columns, you can not suppress a row if it is null, you can only hide the column entirely.

example:    = if ( [Bucket] != 'NA', FIRM_NAME, null())

Thanks in advance.

Labels (1)
1 Reply
MK_QSL
MVP
MVP

= if ( [Bucket] <> 'NA', FIRM_NAME, null())


OR


If(Aggr(sum(Bucket),FIRM_NAME)<>0,FIRM_NAME)