Forum Discussion
dommyw277
4 years agoHelper V
SLA Date Question
Hi, I have a created date and a closed by date. If the closed by date is prior to todays date its breached its SLA. Is there a calculation i could do to reflect this? Hope it makes sense. Example: ...
- 4 years ago
dommyw277 , A new column like
if([Resolve By SLA Deadline] < today(), "SLA breached", "Not")
if([Resolve By SLA Deadline] > today(), "SLA breached", "Not")
amitchandak
4 years agoSuper User
dommyw277 , You statement and example is not match
But you can create a column like
if([Close Deadline date] < today(), "SLA breached", "Not")
or
if([Close Deadline date] > today(), "SLA breached", "Not")
dommyw277
4 years agoHelper V
Hi, apologies
the 2 columns are :
Created Date Time
Resolve By SLA Deadline
- amitchandak4 years agoSuper User
dommyw277 , A new column like
if([Resolve By SLA Deadline] < today(), "SLA breached", "Not")
if([Resolve By SLA Deadline] > today(), "SLA breached", "Not")