This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
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])
)
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |