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