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

Filtering members in Dimension

In Qlik Sense Dimension how to filter specific values to show up in simple table.Ex: I have 4 product types as A,B,C,D and want to show only A&B with its corresponding measures  in a table without using the column filter.Thanks.

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this expression

=Sum({<ProductType={'A', 'B'}>} MeasureName)

This will display only ProductType  A and B.

If you have multiple expressions in your chart then you have use this part of expression in all expressions.

{<ProductType={'A', 'B'}>}

Regards,

Jagan.

View solution in original post

2 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this expression

=Sum({<ProductType={'A', 'B'}>} MeasureName)

This will display only ProductType  A and B.

If you have multiple expressions in your chart then you have use this part of expression in all expressions.

{<ProductType={'A', 'B'}>}

Regards,

Jagan.

Not applicable
Author

Thanks Jagan!!