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

Announcements
Learn how to migrate to Qlik Cloud Analytics™: On-Demand Briefing!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

check more variabeles in one formula

I am trying to count the orders of a specific product, but the result is not correct.

However in my table the correct orders are shown.

What am I doing wrong?

count({$ < Artikelgroep = {'CendrisMonitor'} > and $ <OMZET > 0 >} distinct(RELATIE_NAAM))

I am trying to count the unique RELATIE_NAAM for each record that has OMZET > 0.

Thanks!

Wouter

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Try this

count({$ < Artikelgroep = {'CendrisMonitor'} ,   OMZET ={'">0"}>} distinct(RELATIE_NAAM))

- Sridhar

View solution in original post

4 Replies
Anonymous
Not applicable
Author

Hi Wouter,

I think you should try something like :

count({$ < Artikelgroep = {'CendrisMonitor'} ,   OMZET ={'0'}>} distinct(RELATIE_NAAM))

Not applicable
Author

Thanks, but unfortunately the OMZET has to be bigger than 0. Not equal to it...

Not applicable
Author

Hi,

Try this

count({$ < Artikelgroep = {'CendrisMonitor'} ,   OMZET ={'">0"}>} distinct(RELATIE_NAAM))

- Sridhar

Not applicable
Author

Thanks Sridhar, that was it (there was a ' too much, but I fixed that problem myself....  ) !!

Great!!!