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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I am trying to calculate whether a job is a pass or fail based on the SLA using below formula:
Regards,
Fahad
Solved! Go to Solution.
So like this?
Finish Date SLA =
IF(
ISBLANK(F_TASKS[TA_FINISH_DATE]),
IF(TODAY() <= F_TASKS[TA_EST_DATE],"Pass","Fail" ),
IF(F_TASKS[TA_FINISH_DATE] <= F_TASKS[TA_EST_DATE],"Pass","Fail" )
)
Hi @Anonymous ,
Try this :
Finish Date SLA =
IF(
F_TASKS[TA_FINISH_DATE]= BLANK(),
IF(TODAY() <= F_TASKS[TA_EST_DATE],"Pass","Fail" ),
IF(F_TASKS[TA_FINISH_DATE] <= F_TASKS[TA_EST_DATE],"Pass","Fail" )
)
So like this?
Finish Date SLA =
IF(
ISBLANK(F_TASKS[TA_FINISH_DATE]),
IF(TODAY() <= F_TASKS[TA_EST_DATE],"Pass","Fail" ),
IF(F_TASKS[TA_FINISH_DATE] <= F_TASKS[TA_EST_DATE],"Pass","Fail" )
)
worked perfectly and the result is correct as expected, thank you very much.
I need alot of support from this forum to be a power bi champ.
Really appreciate.
Any time @Anonymous !
@Anonymous , Try like
//march release
Finish Date SLA = IF(F_TASKS[TA_FINISH_DATE] <= coalesce(F_TASKS[TA_EST_DATE], today()),"Pass","Fail" )
//Before march release
Finish Date SLA = IF(F_TASKS[TA_FINISH_DATE] <= if(isblank(F_TASKS[TA_EST_DATE]),today(),F_TASKS[TA_EST_DATE]),"Pass","Fai
Thank you very much for your quick reply, but it is giving me the same result.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.