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: 
MrJanjua
Contributor II
Contributor II

Separate Pia Charts with two column

I have two columns with Item_name and Category

 

Itmes_Name        Category

A                                   X

B                                   X                                  

A                                    X

B                                    X

V                                    Z

V                                    Z

 

I wants to make two pia chart with same table 1 is for X category and one is for Z category

I need Expression to select data from category X with Items :  

Labels (4)
2 Solutions

Accepted Solutions
BrunPierre
Partner - Master II
Partner - Master II

As a calculated dimension, while suppressing the null values.

 Aggr(Only({1<Category={'X'}>} Itmes_Name ), Itmes_Name)

View solution in original post

MrJanjua
Contributor II
Contributor II
Author

Thanks Dear u solve It

View solution in original post

2 Replies
BrunPierre
Partner - Master II
Partner - Master II

As a calculated dimension, while suppressing the null values.

 Aggr(Only({1<Category={'X'}>} Itmes_Name ), Itmes_Name)

MrJanjua
Contributor II
Contributor II
Author

Thanks Dear u solve It