Im trying to get a row with the total for a column group with SSRS. This is my report:
+-----------+---------------------------+--------------------------+--------------+
| | John Doe | Brody Shaffer | Kerry Morrow |
+-----------+-------------+-------------+-------------+------------+--------------+
| Date | Project 1 | Project 2 | Project 3 | Project 5 | Project 4 |
| 1/1/2020 | $ 2.512,20 | $ 3.230,00 | $ 0 | $ 0 | $ 200,00 |
| 2/1/2020 | $ 0 | $ 0 | $ 35.504,00 | $ 5.200,30 | $ 3.400,00 |
| 5/1/2020 | $ 6.640,90 | $ 987,00 | $ 1.879,00 | $ 0 | $ 0 |
| 15/1/2020 | $ 650,50 | $ 0 | $ 0 | $ 0 | $ 0 |
.
.
.
I want this row:
.
.
.
+-----------+-------------+-------------+-------------+------------+--------------+
| Total | $ 14.020,6 | $ 42.583,3 | $ 3.600,00 |
+-----------+---------------------------+--------------------------+--------------+
Rows sample:
+---------------+-----------+-----------+-------------+
| Customer | Date | Project | Budget |
+---------------+-----------+-----------+-------------+
| John Doe | 1/1/2020 | Project 1 | $ 2.512,20 |
| John Doe | 1/1/2020 | Project 2 | $ 3.230,00 |
| John Doe | 5/1/2020 | Project 1 | $ 6.640,90 |
| John Doe | 5/1/2020 | Project 2 | $ 987,00 |
| John Doe | 15/1/2020 | Project 1 | $ 650,50 |
| Brody Shaffer | 2/1/2020 | Project 3 | $ 35.504,50 |
| Brody Shaffer | 2/1/2020 | Project 5 | $ 5.200,30 |
| Brody Shaffer | 5/1/2020 | Project 3 | $ 1.879,00 |
| Kerry Morrow | 1/1/2020 | Project 4 | $ 200,00 |
| Kerry Morrow | 2/1/2020 | Project 4 | $ 3.400,00 |
+---------------+-----------+-----------+-------------+
This is my row group:
Date
This is my column group:
Customer
Project
When i add a "total" for the "Customer group", visual studio add a new column, but i need a new row with the total data.
Is this possible?