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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Filtering-out a list of values in an expression

I need to hide multiple values for a dimension using an expression.  We do not want to limit this data on loading, so this is not an option. 


I've successfully used <> for a single value, but do not know how to handle multiple values. 

1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

=If( Not Match(FIELD, 'Value1','Value2','Value3'), FIELD)

as calculated dimension or using set analysis in every aggregation function in your expressions:

=Sum({<FIELD -= {'Value1','Value2','Value3'} >}Value)

View solution in original post

2 Replies
swuehl
Champion III
Champion III

=If( Not Match(FIELD, 'Value1','Value2','Value3'), FIELD)

as calculated dimension or using set analysis in every aggregation function in your expressions:

=Sum({<FIELD -= {'Value1','Value2','Value3'} >}Value)

Anonymous
Not applicable
Author

Thanks!