Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have to exclude abc value which comes in my field (A).
can i know how to do that plz??
thanks
try sum({<FieldA-={'abc'}>} amount)
i think it should be
sum({<[FieldA]-={'<>abc'}>} amount)
hi,
the -= operator in your set analysis should do the trick:
sum({<A-={abc}>}FieldName)
rgds
Artur
Hi,
This should return all values in FIELDA except 'abc' (within a selection)
sum( {$<FieldA = {“*”} – {'abc'} >} Value )
regards,