This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hey all, Im trying to create a Running Total (RT) function for Actuals, Budget and Forecast data. I have included the following function:
Any suggestions to why this maybe the case? TIA!
Solved! Go to Solution.
@MFelix this worked for me:
Thanks @MFelix @JW_van_Holst for your responses. Ive had a slightly different issue. My pc required a restart to install updates and I didnt save the file. To recover the file, I reopened the file from Autorecovery in PowerBI and when I did Im stuck with this page. Any idea how this can be recovered to its previous state?
Hi @Anonymous ,
If the recovery file is also "broken" you don't have any way to get the recovered file. Try tomcheck the folder where the file is saved.
The folder is on the options of the PBI. but be aware that this are temp files and since you open it it may be already deleted.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous ,
Believe you have the syntax of the ISONORAFTER incorrect try the folllwing:
Actual RT =
CALCULATE (
SUM ( Actuals[Actual] ),
FILTER (
ALLSELECTED ( 'calendar'[Date] ),
ISONORAFTER ( MAX ( 'calendar'[Date] ), desc )
)
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português@MFelix this worked for me:
ISONORAFTER is a utility function. Do not use it in measures.
Try:
RT =
VAR LastVisibleDate =
MAX ( 'calendar'[Date] )
VAR PeriodToUse =
FILTER ( ALL ( 'calendar'[Date] ), 'calendar'[Date] <= LastVisibleDate )
RETURN
CALCULATE ( SUM ( Actuals[Actual] ), PeriodToUse )
Check out the May 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 |
|---|---|
| 28 | |
| 26 | |
| 25 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 22 | |
| 19 | |
| 18 |