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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi, everyone! I'd like to create a cumulative sum column in DAX that calculates the SUM of [FlightHours] from either September to September or everytime [Day/Mo] hits 13 from 17 (The month is split at September 14). Screenshot below. Open to any ideas. Thank you!
Solved! Go to Solution.
HI @rhaddad87,
You can try to use the following calculate column formula if helps:
formula =
CALCULATE (
SUM ( Table[FlightHours] ),
FILTER (
'Table',
[Date] <= EARLIER ( Table[Date] )
&& [Date] >= DATE ( YEAR ( EARLIER ( Table[Date] ) ), 9, 1 )
&& [Date] < DATE ( YEAR ( EARLIER ( Table[Date] ) ) + 1, 9, 1 )
)
)
Regards,
Xiaoxin Sheng
HI @rhaddad87,
You can try to use the following calculate column formula if helps:
formula =
CALCULATE (
SUM ( Table[FlightHours] ),
FILTER (
'Table',
[Date] <= EARLIER ( Table[Date] )
&& [Date] >= DATE ( YEAR ( EARLIER ( Table[Date] ) ), 9, 1 )
&& [Date] < DATE ( YEAR ( EARLIER ( Table[Date] ) ) + 1, 9, 1 )
)
)
Regards,
Xiaoxin Sheng
Hi:
Please see attached link. Once you have a date table it is easier to do these specialized calculations.
https://drive.google.com/file/d/1oTy2F3vGo_B8e_q8w3YfDA12OrsnV_X_/view?usp=sharing
You can change the last part of this measure to the year-end date you like.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
13 | |
11 | |
10 | |
10 |