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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to exclude a fieldname within a chart

I have a chart which totals the cost for "Practices". The chart includes a fieldname called "unallocated" within a dimension called "Practice" and I want to exclude the "unallocated". Any assistance would be appreciated. I have attached the chart.

Thanking you in advance

Claire

1 Solution

Accepted Solutions
whiteline
Master II
Master II

Use calculated dimension

=if(Practice='unallocated', null(), Practice)

or

=aggr(if(Practice='unallocated', null(), Practice), Practice)

View solution in original post

1 Reply
whiteline
Master II
Master II

Use calculated dimension

=if(Practice='unallocated', null(), Practice)

or

=aggr(if(Practice='unallocated', null(), Practice), Practice)