Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
richnorris
Creator II
Creator II

aggr in load script?

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?

Labels (1)
2 Replies
richnorris
Creator II
Creator II
Author

Or, is there a way of doing the equivalent?

danielrozental
Master II
Master II

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