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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Custom pie chart

I have a pie showing various "error description".

I would like a pie with one specific error description vs all of the rest.

Shipment = 6

Design = 2

Supplier = 3

I would like to see for example shipment errors vs the rest ( pie with 6 , 5 )

Thanks !

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

Try a calculated dimension:

=if(Field = 'Shipment',Field,'Rest')

or in script:

if(Field = 'Shipment',Field,'Rest') as Field1;

View solution in original post

2 Replies
m_woolf
Master II
Master II

Try a calculated dimension:

=if(Field = 'Shipment',Field,'Rest')

or in script:

if(Field = 'Shipment',Field,'Rest') as Field1;

Not applicable
Author

Thanks , worked like a charm