Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to make this expression work. Any body has any idea?
SUM({$<TEXT(CUSTOMER_NUMBER&DIVISION)={'13715DNE'}>} DOLLAR)
CUSTOMER_NUMBER = 13715
DIVISION=DNE
Thanks,
Nima
Concatenate CUSTOMER_NUMBER&DIVISION in script as NewField,
then use NewField in set analysis?
I don't want to change any thing in script. that's why I want to do it in expression.
It would be easiest to do it in the script, but you could use an IF statement if you needed it as an expression. If(CUSTOMER_NUMBER & DIVISION='13715DNE',sum(Dollars) and then suppress nulls.
Sorry add one more ) at the end
The problem is that there is many of them and I want to compare all of them. That's why I used {}.
Do you have a sample file of what you are looking for?
You can't use a function on the left side of the "=". So do it as two modifers like this:
SUM({$<CUSTOMER_NUMBER={13715}, DIVISION={DNE}>} DOLLAR)
-Rob
I had no choice . I had to do it in script.
Thanks to all