zootweller
Technical User
Hi
I am trying to calculate the SLA resolution times for a call management system, but the main table's close date field actually records the last time the call was closed. If it was closed, re-opened and closed again, it updates.
To see when a call was initially closed, I have to look in an audit-trail table - is there a way that I can retrieve the datetime for the 1st closure so it can be used to calculate the real SLA time? Audit trail closure entries have an 'entry_type' of 'Quick Solution' and I was thinking along the lines of IF AuditTable.Entry_Type = 'Quick Solution' then Minimum(AuditTable.EntryDateTime) or similiar, but may be going up the wrong path...
I am trying to calculate the SLA resolution times for a call management system, but the main table's close date field actually records the last time the call was closed. If it was closed, re-opened and closed again, it updates.
To see when a call was initially closed, I have to look in an audit-trail table - is there a way that I can retrieve the datetime for the 1st closure so it can be used to calculate the real SLA time? Audit trail closure entries have an 'entry_type' of 'Quick Solution' and I was thinking along the lines of IF AuditTable.Entry_Type = 'Quick Solution' then Minimum(AuditTable.EntryDateTime) or similiar, but may be going up the wrong path...