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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
linoyel
Specialist
Specialist

Showing right values according to set analysis

Hey all, I really need your help

I have to show sum of sales for agents who sold less then 10000 (and a few more conditions in set analysis).

It lookls like this:

=If ($(NetSum_upgrade_current)<=10000, Sum({$<$(s.Month.Current), SaleType_id = {0}, user_group_ID = {1}>} income), 0)

As you can see, if the condition is false (for example, agent who sold > 10000),  I put value = 0 and then I check "suppress zero values" so it won't be shown in a table.

The problem is agents that sold 0! When it's a real 0 and not 0 because of the false condition - I need them to be in the table as well!

Is there any option to change 0 by smth else in the condition, lets say by -11111 and then suppress this value?

Any help would be appreciated

1 Solution

Accepted Solutions
avinashelite

Hi Linoy,

Replace 0 by some thing like '' and try with suppress missing.

View solution in original post

2 Replies
avinashelite

Hi Linoy,

Replace 0 by some thing like '' and try with suppress missing.

linoyel
Specialist
Specialist
Author

Thank you very much, Avinash!

That worked