Forum Discussion
Anonymous
4 years agoNot applicable
Group by Aggregate
Hi everyone I am required to have a group by total in my report. There are several rows of same supplier with different invoices total, I want to group all rows into one row and show the sum of in...
- 4 years ago
You can write measure like below:-
Measure_LT_125 = if(sum(total amount)<125000,sum(total amount))Measure_GT_700 = if(sum(total amount)>700000,sum(total amount))Measure_BT = if(AND(sum(total amount)>125000,sum(total amount)<700000),sum(total amount))
Watsky
4 years agoSolution Sage
Hey Anonymous ,
If your example isn't what you want it to look like, then can you show us what you want the results to look like?
Anonymous
4 years agoNot applicable
Hi Watsky
Thankyou for correction. Here is a new example how i want it to be look like
Explanation ::: Sevenstar has many rows, I want it to be groupped in one row and show the total invoices and total .
Best regards