I am trying to write the following logic to calculate the SLA breach.
LOW - Greater than - 7 days
MEDIUM - Greater than - 4 days
HIGH - Greater than - 2 days
CRITICAL - Greater than - 1 day.
However, the formula is not accurately bringing the breach/no breach as expected. Except "Critical" all of the other severity logics are as showing as "Not Breached".
=IF(Severity@row = "", "", IF(AND(Severity@row = "Low", [Total Ticket Duration]@row > "7"), "Breach", IF(AND(Severity@row = "Medium", [Total Ticket Duration]@row > "4"), "Breach", IF(AND(Severity@row = "High", [Total Ticket Duration]@row > "2"), "Breach", IF(AND(Severity@row = "Critical", [Total Ticket Duration]@row > "1"), "Breach", "No Breach")))))