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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
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

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

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

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