Hello experts,
I'm new in BEx query designer and I'm currently working on displaying the maximum of a list of values and group them by calendar day like the exemple below:
CalendarDay | Client | Amount |
---|---|---|
02.09.2014 | A | 3000 |
02.09.2014 | B | 2000 |
03.09.2014 | A | 1500 |
03.09.2014 | B | 1600 |
The result I need to display is as below:
CalendarDay | Amount |
---|---|
02.09.2014 | 3000 |
02.09.2014 | 2000 |
OverAll result | 3000 |
03.09.2014 | 1500 |
03.09.2014 | 1600 |
OverAll result | 1600 |
What's the best solution for this ?! is it to work with calculated Key Figure or Exceptions ?! Would any one help me to get such result.
Thanks a lot