Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Determine if Within SLA or Out?

Hi Kind People,

 

Need your help.

I'm having a hard time as well in getting the SLA if Within and if Out of SLA.

 

Requirement:

1. if TAT is equal or less than SLA, should be Tagged as "Within SLA"

2. if TAT is not equal or greater than SLA, should be tagged as "Out of SLA" and if TAT is Blank, should be tagged as well as "Out of SLA"

 

Nelzkie09_0-1675424489233.png

 

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @Anonymous 

 

Please try:

Within or Out = 
var _a = HOUR([TAT])+MINUTE([TAT])/60+SECOND([TAT])/3600
return IF(OR(ISBLANK([TAT]),_a>[SLA]),"Out of SLA","Within SLA")

Final output:

vjianbolimsft_0-1675662742961.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-jianboli-msft
Community Support
Community Support

Hi @Anonymous 

 

Please try:

Within or Out = 
var _a = HOUR([TAT])+MINUTE([TAT])/60+SECOND([TAT])/3600
return IF(OR(ISBLANK([TAT]),_a>[SLA]),"Out of SLA","Within SLA")

Final output:

vjianbolimsft_0-1675662742961.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@Anonymous , Assuming TAT's data type is time, a new column

if( hour([TAT])  >= [SLA], "Within" , "Out")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.