cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Nelzkie09
Helper I
Helper I

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 @Nelzkie09 

 

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 @Nelzkie09 

 

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

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

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

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors