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: 
nbuscemi
Contributor III
Contributor III

Pie chart ignoring filters

Hi,

I have a pie chart with the following expression in measure: if (TIP_NUM = 'Empl', SUM(Amount).

I want the pie does not change when I filter for THERAPEUTICAREA and REGION, I've tried this: if (TIP_NUM = 'EMPL',  SUM({< THERAPEUTICAREA =, REGION = >} AMOUNT))

but no success.

Can you suggest something?

 

Thanks.

1 Solution

Accepted Solutions
Prashant_Naik
Partner - Creator II
Partner - Creator II

Hi,

This might help : Sum({<TIP_NUM={'EMPL'},THERAPEUTICAREA =, REGION = >}Amount)

Regards,

Prashant

View solution in original post

2 Replies
Prashant_Naik
Partner - Creator II
Partner - Creator II

Hi,

This might help : Sum({<TIP_NUM={'EMPL'},THERAPEUTICAREA =, REGION = >}Amount)

Regards,

Prashant

nbuscemi
Contributor III
Contributor III
Author

This worked!!! Thanks😀