Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a function:
sum(aggr([$(vCurrency) Volume],[Row ID_]))
that I want to move into the load script and store in a field, rather than calculating it in every chart. Is this possible?
Or, is there a way of doing the equivalent?
I don't believe your expression makes much sense.
You can totalize values using group by
LOAD
Field1,
Field2,
sum(Field3)
Group By Field1, Field2
Regards