Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
.
Try like this
sum(if( "market"='DOMESTIC', if(not WildMatch( party_name ,'ALEX*' ), (basicvalue))))
Try like this
sum(if( "market"='DOMESTIC', if(not WildMatch( party_name ,'ALEX*' ), (basicvalue))))
Try like:
sum({<market={'DOMESTIC'}, party_name - ={'ALEX*'} >} basicvalue)
or try
sum(if(not WildMatch( party_name ,'ALEX*' ) and "market"='DOMESTIC' ,basicvalue))