Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hey all ,
i have a field for example
ID
001
002
003
004
005
006
how chan i write in the set analysis sum(ID<> 001 and ID <>002,amount)
Thank you,
Hi,
Sum({<ID-={'001','002'}>}Amount)
or
Sum(if( not wildmatch(ID,001,002),Amount))
Regards
SUM({<ID = {'*'}-{'001','002'}>}amount)
Hi,
Try:
1--->Sum({<ID-={'001','002'}>}Amount)
2--->Sum({<ID={'<>001'},ID={'<>002'}>}Amount)
Regards,
Jemimah
sum({$<ID =E({<ID ={001,002}>})>}Amount)
Hi Mario,
Try like this:
Sum({<ID = {''001','002'} > } Amount )
It's simple :
Sum ---------------------------------------------> Expression
{< Dim = { unique record} >} - ----> Set
your req: Amount
Ramya.