Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
maybe this:
Count( { 1-$< Status *= {'A','B'} >} ID )
I hope it helps.
Try this... you don't need * here
Count({$<Status -= {'A','B'}>} ID)