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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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?

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