Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
How to get running total to start where Expected is not blank
| Year | Month | Actuals | Expected | Running total_actual | ||||
| 2023 | January | 7329305.26 | ||||||
| 2023 | February | 7040769.37 | ||||||
| 2023 | March | 8310650.13 | ||||||
| 2023 | April | 8200281.83 | ||||||
| 2023 | May | 8141290.64 | 7890089.22 | 8141290.64 | ||||
| 2023 | June | 7756748.08 | 7525232.27 | 15898038.72 | ||||
| 2023 | July | 7243086.24 | 7446243.08 | 23141124.96 | ||||
| 2023 | August | 7935872.59 | 7900674.91 | 31076997.55 | ||||
| 2023 | September | 7487803.65 | 7373772.55 | 38564801.20 | ||||
| 2023 | October | 7571741.71 | 7771248.01 | 46136542.91 | ||||
| 2023 | November | 7487853.55 | ||||||
| 2023 | December | 7794475.08 |
Hello @Daniel29195 , Pls let me know how resolve this error for above formula, while creating Measure
it seems that you dont have a dimdate . also i noticed that excepted is a measure not a column.
modify your code as follow :
m =
VAR mind =
MINX (
FILTER (
ADDCOLUMNS (
ALLSELECTED ( data[date] ),
"ex", [excpected]
),
NOT ISBLANK ( [ex] )
),
data[date]
)
VAR maxd = max(data[date])
VAR res =
CALCULATE (
SUM ( tbl_name[actual] ),
data[date] >= mind,
data[date] <= maxd,
REMOVEFILTERS ( data[date] )
)
RETURN res
let me know if it works for you ,
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
Formula is not working, I have actuals and expected both as measures. pls see below screenshot after I apply formula
assuming you have a dimdate table :
create the below measure
m =
var res =
var mind= calculate(
min(dimdate[date]) , allselected(dimdate), not isblank(tbl_name[excpected] ))
var maxd= calculate(
max(dimdate[date]) , not isblank(tbl_name[excpected] ))
var res =
calculate (
sum(tbl_name[actual]) ,
dimdate[date] >=mind , dimdate[date<=maxd , removefilters(dimdate)
)
return res
let me know if it works for you.
If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution ✅
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 85 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |