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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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
tresesco
MVP
MVP

If the second criteria is on another field try like:

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