Skip to main content
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
Luminary Alumni
Luminary Alumni

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
Luminary Alumni
Luminary Alumni

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