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