Hi,
I have found lots of interesting stuff about time here, but one thing
is eluding me.
I need to be able to find the elapsed time between when a call was
taken and the time that the case was resolved.
Easy enough you say and it is.
Then I need to compare the elapsed time with a constant value, ie. 2
Hours, 4 hours, 48 hours and 120 hours.
I have tried doing this in an excel spreadsheet but no luck.
so here it is in psudo code;
WorkTime = Start Time - Finish Time
If Worktime > 2 and SLA = 1 then
objworksheet.value = "Over Sla"
End if
And so on and so on.
OldDog