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.
Hi I want to display the cummilative sum only from August months onward but not able to acheive this .
In Aug , Final FG STK Total should be 221.362 +(-69.45) ( in current it is showing only -69.45) In Sep , Final FG STK Total should be 221.362 +(-69.45) + 10.55 (in current it is showing only 10.55) & so on
Stuck in getting those values.
Solved! Go to Solution.
Hi @Anonymous
Try this calculated column
CALCULATE (
SUM ( 'table'[rolling total] ),
FILTER (
ALL ( 'table' ),
'table'[month] >= 7
&& 'table'[month] <= EARLIER ( 'table'[month] )
)
)
Hi @Anonymous ,
You could try below code:-
Cumulative_Total =
VAR CurrentMonth = [Month]
var _result =
CALCULATE(
SUM('Table (3)'[Rolling_total]),
FILTER(
ALL('Table (3)'),
[Month] <= CurrentMonth && [Month] >= 7
)
)
RETURN IF('Table (3)'[Month] >=8,_result)
Output:-
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Anonymous ,
You could try below code:-
Cumulative_Total =
VAR CurrentMonth = [Month]
var _result =
CALCULATE(
SUM('Table (3)'[Rolling_total]),
FILTER(
ALL('Table (3)'),
[Month] <= CurrentMonth && [Month] >= 7
)
)
RETURN IF('Table (3)'[Month] >=8,_result)
Output:-
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @Anonymous
Try this calculated column
CALCULATE (
SUM ( 'table'[rolling total] ),
FILTER (
ALL ( 'table' ),
'table'[month] >= 7
&& 'table'[month] <= EARLIER ( 'table'[month] )
)
)
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 |
---|---|
57 | |
55 | |
55 | |
37 | |
30 |
User | Count |
---|---|
78 | |
64 | |
45 | |
43 | |
40 |