Forum Discussion
Rao1991
2 years agoNew Member
how to display the column total same as row data values
We have data like below and need to disply the total same as like row data value..
data in PBI
| ITEMID | name | value | Amount |
| 42 | A | K | 375,186.16 |
| 42 | B | L | 375,186.16 |
| 42 | C | M | 375,186.16 |
| 42 | D | N | 375,186.16 |
| 42 | E | O | 375,186.16 |
expected output:
need to display amount total based on item id
| ITEMID | name | value | Amount |
| 42 | A | K | 375,186.16 |
| 42 | B | L | 375,186.16 |
| 42 | C | M | 375,186.16 |
| 42 | D | N | 375,186.16 |
| 42 | E | O | 375,186.16 |
| Total | 375,186.16 |
And if we remove the name and value, the expected out put would be lik this
| ITEMID | Amount |
| 42 | 375,186.16 |
| Total | 375,186.16 |
1 Reply
- HotChilli
Community Champion
You can use an aggregation of MIN on the Amount.
What happens when there are different items in the table?