Explore recipe: Reviewing SLA performance based on only 1 standard

1 Comentarios

  • Dane
    Zendesk Engineering
    Hi,
     
    You can try to use the formula below to remove the error. 
     
    IF (VALUE(SLA metric completion time (min))<2879) THEN "0-48 hours" ELSE
    IF (VALUE(SLA metric completion time (min))<2880) THEN "48hours" ELSE "Over 48 hours"
    ENDIF ENDIF
     
    However, based on your values, it will be better to optimize it and remove 48 hours.
     
    IF (VALUE(SLA metric completion time (min))<=2879) THEN "0-48 hours" ELSE "Over 48 hours"
    ENDIF
    0

Iniciar sesión para dejar un comentario.

Tecnología de Zendesk