Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Count assistance

 

 

  • Count all entries that meet the criteria FIELD1 with answer ‘YES’ and FIELD2 with answer ‘NO’ <Note** that this combination will be the argument we use to identify all COMP that were flown by a drone> TAKE OUT NULLS.
    • Display total count

  

1 Solution

Accepted Solutions
Not applicable
Author

=((count(field1)='YES')+ (Count(field2)='NO')))

will this work?

View solution in original post

3 Replies
swuehl
MVP
MVP

Not sure, but maybe

=Count( {<FIELD1 = {'YES'}, FIELD2 = {'NO'} >} YourCountEntryField)

Not applicable
Author

=((count(field1)='YES')+ (Count(field2)='NO')))

will this work?

swuehl
MVP
MVP

Does it work? I believe it won't return a total count of your field(s), but if you think that this is the correct answer...