
Creator III
2018-02-21
12:33 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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

Partner - Creator III
2018-02-21
12:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
1 Reply

Partner - Creator III
2018-02-21
12:49 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
