Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! 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
MVP
MVP

=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
MVP
MVP

=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!