Hello everyone,
when I add a certain dimension to my report, it is not aggregated. This means that the records with same dimension value are repeated. Example (without the column in question):
| Company | Country | Employee Count |
|---|
| Company1 | England | 3 |
| Company1 | Norway | 2 |
| Company1 | Sweden | 5 |
| Company1 | France | 7 |
Now when I add this specific column, for example in my case 'Department', this happens (taking only England as an example):
| Company | Country | Department | Employee Count |
|---|
| Company1 | England | Finance | 1 |
| Company1 | England | Finance | 1 |
| Company1 | England | Sales | 1 |
Why does the Finance department not aggregate Employee Count to 2, like this:
| Company | Country | Department | Employee Count |
|---|
| Company1 | England | Finance | 2 |
| Company1 | England | Sales | 1 |
I'm a bit lost as to where I should begin looking at what might be causing this problem. Any help or tip is appreciated.
Thank you