Forum Discussion
e175429
Helper IV
1 year agoRunning Totals
Hello All, This is a sample of my data: Anyone know what I should do to get the running totals for the Users? Mind you, my actual data is over 43,000 rows. I tried to upload a sample ...
Sahir_Maharaj
Super User
1 year agoHello e175429,
Could you please try the following approach:
Running Total per User :=
VAR CurrentDate = MAX ( 'Fact'[PaidDate] )
RETURN
CALCULATE (
COUNTROWS ( 'Fact' ),
FILTER (
ALLSELECTED ( 'Fact'[PaidDate] ),
'Fact'[PaidDate] <= CurrentDate
)
)- e1754291 year ago
Helper IV
Hey,
Thank you for your response. I've created the measure but I'm not sure how to graph this.
This is what I get:
Which is not exactly what I am looking for.
In the table, I want the running totals for everyone, and then when I put a filter on, I would like the running total for that one individual.I have already created a date table: