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: 
Nino
Contributor III
Contributor III

Syntax in set analysis

Hi,

can someone show the correct syntax for the negative form of 

Count( {$< Status *= {'A','B'} >} ID )

I've tried both:

Count( {$< Status *-= {'A','B'} >} ID)

and

Count( {$< Status -*= {'A','B'} >} ID)

but it gives me a syntax error?

Thank you so much

N.

2 Replies
agigliotti
MVP
MVP

maybe this:

Count( { 1-$< Status *= {'A','B'} >} ID )

I hope it helps.

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
sunny_talwar
MVP
MVP

Try this... you don't need * here

Count({$<Status -= {'A','B'}>} ID)