Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Good Day,
I am trying to get a running total by year but am just getting the total of each year. What I am wanting is a running total by year. So for instance 2018 has 1085 as the count and 2019 has 12404 as the count on the matrix I would like 2019 to be a sum of 2018 & 2019 and to continue on for the rest of the years. Can someone help me through this madness?
Current Formula:
Many Thanks,
Your friendly neighborhood Lydia
Solved! Go to Solution.
@Anonymous Try Better Running Total: Better Running Total - Microsoft Power BI Community
Better RT =
VAR __Date = MAX('Assets'[Created_Date])
VAR __Table = FILTER(ALLSELECTED('Assets'),[Created_Date] <= __Date)
RETURN
SUMX(__Table,[Status Bit])
@Anonymous Try Better Running Total: Better Running Total - Microsoft Power BI Community
Better RT =
VAR __Date = MAX('Assets'[Created_Date])
VAR __Table = FILTER(ALLSELECTED('Assets'),[Created_Date] <= __Date)
RETURN
SUMX(__Table,[Status Bit])
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
13 | |
7 | |
5 |