Hello,
I have a report that looks like this and need to aggregate the data. There is a hidden column that I need in the report causing the data to not aggregate:
| Department | Count |
|---|---|
| 55 | 3 |
| 55 | 0 |
| 55 | 4 |
| 22 | 2 |
Would like it to look like this:
| Department | Count |
|---|---|
| 55 | 7 |
| 22 | 2 |
Thanks
Bryn