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: 
wanyunyang
Creator III
Creator III

Aggr(SUM(Amount), group)

Hi guys,

I have a silly question: what is the difference between

SUM(Aggr(SUM(Amount), group))

and

Aggr(SUM(Amount), group)?


Thanks in advance!

1 Solution

Accepted Solutions
fabdulazeez
Partner - Creator III
Partner - Creator III

Aggr(SUM(Amount), group)  ----- Gives a virtual table with sum of amount for each groups.so this could be dimension

SUM(Aggr(SUM(Amount), group)) -- Gives the sum of all amounts

View solution in original post

1 Reply
fabdulazeez
Partner - Creator III
Partner - Creator III

Aggr(SUM(Amount), group)  ----- Gives a virtual table with sum of amount for each groups.so this could be dimension

SUM(Aggr(SUM(Amount), group)) -- Gives the sum of all amounts