Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Here is my formula
Sum(if((TCODE='PU' and [Supplier Code]='S*') ,AMOUNT))
I am trying to get the sum AMOUNT of all [Supplier Code] beginning with the letter 'S' and the * symbol doesn't work
Sum({<TCODE={'PU'},[Supplier Code]={"S*"}>} AMOUNT)
Try it in this way:
Sum({< TCODE = {'PU'}, [Supplier Code] = {"S*"}>} AMOUNT))
- Marcus
Sum({<TCODE={'PU'},[Supplier Code]={"S*"}>} AMOUNT)
Try it in this way:
Sum({< TCODE = {'PU'}, [Supplier Code] = {"S*"}>} AMOUNT))
- Marcus
Thanks that worked perfectly