Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi, I am working on a report that shows payments over time collected for a specific charge month. For example, in the screenshot below I have a row for charges posted in the month of January and the columns are showing months out from charge post. I would like to have the values for months out from 0-12 be cumulative instead of showing how how much in payments was collected each month. Any help is appreciated. Thank you.
Solved! Go to Solution.
Hi @jdobbins ,
I suggest you to try measure as below.
Cumulative for each column =
CALCULATE (
SUM ( 'TableName'[Value] ),
FILTER (
ALLEXCEPT ( 'TableName', 'TableName'[Column in Matrix Column Field] ),
'TableName'[Date] <= MAX ( 'TableName'[Date] )
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jdobbins ,
I suggest you to try measure as below.
Cumulative for each column =
CALCULATE (
SUM ( 'TableName'[Value] ),
FILTER (
ALLEXCEPT ( 'TableName', 'TableName'[Column in Matrix Column Field] ),
'TableName'[Date] <= MAX ( 'TableName'[Date] )
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
12 | |
11 | |
8 | |
8 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |