Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi i've created this expresion in a graph
Num(sum({$<Flag=Flag - {Value1}>} Importe*Cambio) + sum(ImporteAV),'.###,0')
I need to replicate this in the script
I tried a few things but they didn't work
What should i do?
Thank you!
Maybe this:
LOAD
...
num(sum(if(Flag<>'Value1', Importe*Cambio)) + sum(ImporteAV), '.###,0') as NewField
...
LOAD (or RESIDENT or FROM) ...
GROUP BY ...