SLA Calculation Strategy
Background: There are four (4) SLA priorities in the Ticketing intake:
Critical = 4 hours: High = 8 Hours: Medium = 24 hours: Low = 48 Hours
Using the Created Date (including both Date and Time) I need to create the Planned SLA Finish for each ticket.
SLA Plan is expressed in Hours
This needs to also be a Date and Time field as it will be used to track whether the Help Desk is meeting SLA, validated against the Modified field.
=DATEONLY(LEFT(Created@row, 9), (TIME(RIGHT(Created@row, 8)) + [SLA Plan] * 60)
Just for information, the time component of the calculation works standing alone it is when I add the date component that it falls apart. So what am I doing wrong?