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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
lakshman1031
Contributor III
Contributor III

how to get distinct values in dimensional level

Hi All,

I have dimensions like Category, ID and Date fields.

In category i have Category1, Category2, Category3 like that and i am taking pie chart and i am taking two values from Category field, I am trying to create Pie chart using below expressions.

Dimension = Pick(Match(Category, 'Cat1',cat2'),'Cat1','Cat2') and 

Measure = Count(Date)

I want to show  distinct ID values of the data in country wise in Pie chart.

Can you please suggest me how to do this scenario.

 

Thanks & Regards,

Lakshman

 

 

Labels (1)
1 Reply
sbaro_bd
Creator III
Creator III

Hi @lakshman1031,

For your dimension, use a IF statement with NULL values when FALSE, like this : 

IF( Match(Category, 'Cat1','Cat2'), Category, null())

On your dimension, disable option 'include null values'.

Regards.