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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!