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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

  

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

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

will this work?

View solution in original post

3 Replies
swuehl
Champion III
Champion III

Not sure, but maybe

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

Not applicable
Author

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

will this work?

swuehl
Champion III
Champion III

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...