Skip to main content
Announcements
Do More with Qlik - Qlik Cloud Analytics Recap and Getting Started, June 19: REGISTER
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

pie chart

Hi,

Pie chart normally show the relation between a single dimension and a single expression.Is it possible if I want to show only required data in that dimension?I mean,if in one column there are Inprogress,Pending,Closed and I want to show only pending and progress.Is it possible?If so,how?

6 Replies
Anonymous
Not applicable
Author

You can use calculated dimension, like this:

aggr(if(match(FieldName('Pending','Inproggress'),FieldName)),FieldName)

And, you have to suppress wen value is null

Or, just select the values you want...

terezagr
Partner - Creator III
Partner - Creator III

Hi,

see attached example

Not applicable
Author

Hi,

Yes it is possible

1. You can use filter in set analysis expression

Ex: =Count({<Column={'Pending','In progress'}>}Column)    // It will return the Pending and In progress counts

Where column will be your actual column which holds In progress,Pending,Closed.

2. You can use a calculated dimension as well

Hope it helps you..

Regards,

Ravikumar

arulsettu
Master III
Master III

HI

Try like this

if(match(field,'Pending','Inproggress'),field)

in calculated dimensions

kiranmanoharrode
Creator III
Creator III

Hi Ramya,

    

Mention your required dimension values in set analysis.

for ex.

=Sum({<Stock_Status={"Pending","Inprogress"}>} Stock)

Regards,
Kiran

agomes1971
Specialist II
Specialist II

Hi,

like this?