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 nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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])
)
)
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 5 | |
| 5 | |
| 4 |