In Google Data Studio I have a small table including a dimension and a metric
| Channel | User |
|---|---|
| A | 1.000 |
| B | 2.500 |
| C | 500 |
Is there a way to calculate the total sum across the dimension (like an LOD) which is shown as an additional column next to the user? The solution should look like this
| Channel | User | Total Users |
|---|---|---|
| A | 1.000 | 4.000 |
| B | 2.500 | 4.000 |
| C | 500 | 4.000 |

