Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hey!
I'm looking for a DAX that could show values by month but each month has to be a sum of previous month and filtered month:
Month | Values | Sum |
1 | 1 | 1 |
2 | 1 | 1+1 |
3 | 1 | 1+1+1 |
So, instead of 3 as a total, it should show 6 as a total.
Hello @Monika_85,
Can you please try this:
Running Total =
VAR CurrentMonth = MAX('Table'[Month])
VAR FilteredTable = FILTER('Table', 'Table'[Month] <= CurrentMonth)
RETURN SUMX(FilteredTable, 'Table'[Values])
Let me know if you might require further assistance.
Hey @Sahir_Maharaj
Thanks for helping me. Unfortunately, this DAX doesn't help me as I wish. Using it, I receive sum by month and I'd like to have sthg like that:
January = sum of January values
February = sum of January + February values
March = sum of January + February + March values
etc.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |