Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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
Partner - Champion
Partner - Champion

maybe this:

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

I hope it helps.

sunny_talwar

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

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