Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
accountDesc = TA'S AND OTHERS
THIS IS MY SET ANALYSIS
Sum({$<BusinessRegion = {'USA','CANADA','MEXICO','INDIA'},AccountGroup = {'Discounts'},
AccountDesc= { 'TA'&CHR(39)&'S & OTHER'} >}NetSales)
AND ITS NOT WORKING...
THANKS IN ADVANCE
Hi,
Try :
Sum({$<BusinessRegion = {'USA','CANADA','MEXICO','INDIA'},AccountGroup = {'Discounts'},
AccountDesc= {"TA'S & OTHER"} >}NetSales)
Aurélien
Sum({$<BusinessRegion = {'USA','CANADA','MEXICO','INDIA'},AccountGroup = {'Discounts'},
AccountDesc= { "TA'S & OTHER"} >}NetSales)
Alternately, if you have
AccountDesc = Other's
You can write as
AccountDesc = {"Other's"}
Hi,
Try :
Sum({$<BusinessRegion = {'USA','CANADA','MEXICO','INDIA'},AccountGroup = {'Discounts'},
AccountDesc= {"TA'S & OTHER"} >}NetSales)
Aurélien
what if i want to use this in script .. do i have to use chr?
You can not use Set Analyses in the script, but yes you have to use chr
Something like :
LOAD
Field,
Sum(NetSales)
Where AccountDesc='TA'&CHR(39)&'S & OTHER'
;
thanks