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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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 ,
you can try this measure to create running total
running total = CALCULATE(SUM(Sales[SalesAmount]),
FILTER(ALL('Calendar'),
'Calendar'[DateKey] <= MAX('Calendar'[DateKey])))
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @IC95 ,
You can try the following expression.
Carry Over Past Dues =
CALCULATE(
SUMX(
FILTER(
ALLSELECTED('DIM_Date'),
'DIM_Date'[theDate] <= MAX('DIM_Date'[theDate])
),
[Past Dues]
)
)
If this doesn't help. Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@IC95 Try: https://community.fabric.microsoft.com/t5/Quick-Measures-Gallery/Better-Running-Total/m-p/2755666#M8...
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
15 | |
7 | |
6 |