Skip to main content
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