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: 
mcmanus_peter
Contributor II
Contributor II

Count under 2 criteria

Hi,

I am trying to count the number of instances but under 2 criteria.

Currently I have

count
({$<[first field]={"first thing to look for"}>}
([first field])
)

I need to have a second condition and unsure how to go about it.

1 Reply
tresB
Champion III
Champion III

If the second criteria is on another field try like:

count
({$<[first field]={'first thing to look for'} , [second field]={'criteria'}>}
([first field])
)