
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sum on Max per dimension
Dear all,
I have the feeling that the solution for my problem should be very easy, I however did not find any solution in several related threads yet.
Please have a look at the following data:
What I'd like to see is:
- Yield per Order and Operation in each row
- Sum of Max(Yield) per Order in the total row
The above simple approach basically suits to my needs, however with one important exception: the 0 in the second row should be 500 and the 0 in row 4 should be 1000.
I hope my explanations are clear, otherwise let me know.
Any input is highly appreciated.
Best regards, jovie
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try this
=if(sum(aggr(max(Yield),Order))=0,sum(Yield),sum(aggr(max(Yield),Order)))

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how about sum(aggr(max(Yield),Order,Operation))

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Looks like both Yield and Max Yield gives same output. Can you please elaborate more?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for your idea. That helps for the rows, but the the total is then wrong:
The total should show the sum of the max per order (accross operations), which means:
Max of order A: 1'500
Max of order B: 2'000
---------------------------
Sum of both: 3'500
Any other ideas?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
sum(distinct aggr(Max(Total <Order> Yield),Order,Operation))

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for this new idea. The result is a bit closer to what I need, but not 100% there yet:

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try this
=if(sum(aggr(max(Yield),Order))=0,sum(Yield),sum(aggr(max(Yield),Order)))

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Clever, that works, thanks a lot! 🙂
