Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am using IF condition but not able to use 'DOES NOT CONTAIN' i.e '<>' sign in the set analysis.
IF CONDITION
==>> sum(if(@WS <>'R' and @WS<>'I' ,#QUANTITY/1000))
I need to implement above condition in the set analysis (FROM and TO)
===> IF(@WS<>'R' or @WS<>'I' ,SUM({<%DATE ={">=$(vFrom) <=$(vTo)"} >}#Quantity)/1000)
Need Help...!!!
Try: SUM({<@WS-={'I','R'} %DATE ={">=$(vFrom) <=$(vTo)"} >}#Quantity)/1000)
Another option could be:
=Sum({<@WS = e({<@WS = {'I','R'}>}) %DATE = {">=$(vFrom) <=$(vTo)"} >} #Quantity) / 1000)
Best,
Sunny
IT IS NOT WORKING.....!!!!
Does this work?
SUM({<@WS-={'I','R'}>}#Quantity)/1000)
If it does, then problem would be in this part -> %DATE ={">=$(vFrom) <=$(vTo)"}
Best,
Sunny