I have created a SSRS report, few record in my report as below:
ID | Currency | Amount
----------------------
1 | USD | 100.00
2 | USD | 80.00
3 | USD | 110.00
4 | EUR | 30.00
5 | EUR | 50.00
I can group the Amount as total as below:
ID | Currency | Amount
----------------------
1 | USD | 100.00
2 | USD | 80.00
3 | USD | 110.00
4 | EUR | 30.00
5 | EUR | 50.00
------------------------
Total: 370.00
But how do I group the currency with it's Currency type as below:
ID | Currency | Amount
----------------------
1 | USD | 100.00
2 | USD | 80.00
3 | USD | 110.00
4 | EUR | 30.00
5 | EUR | 50.00
------------------------
USD 290.00
Total: EUR 80.00
I am group the total by using report wizard, not using sql query. Please help. Thanks