Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi,
I hope someone can help me.
I have the Total Hours Efficiency Workcentre ( data I have)
I then have a measure with the Average Demonstrated Capacity(Last 3 Months)
The Past Dues is another measure which is basically the Total Hours Efficiency - Average Demonstrated Capacity(Last 3 Months)
Thank you in advance.
Hi @IC95 ,
Please try this:
Carry Over PastDues =
SUMX (
FILTER (
ALL ( 'DIM_Date' ),
'DIM_Date'[theDate] <= MAX ( 'DIM_Date'[theDate] )
),
[Past Dues]
)
Posting the question to a relevant forum can greatly increase the probability of getting it resolved.
DAX Commands and Tips - Microsoft Fabric Community
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
use this
Past Dues Running Total =
CALCULATE(
[Past Dues],
FILTER(
ALL('DIM_Date'),
'DIM_Date'[theDate] <= MAX('DIM_Date'[theDate])
)
)
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.