Hello,
I'm writing a report which examines helpdesk data i.e. whether a problem record was resolved within an hour or not.
An example of the output I have currently is as follows:
Case 1
Main Helpdesk
22/11/2005 08:32 18/01/2006 Assigned 13:33 1
18/01/2006 13:33 17/03/2006 Pending 13:14 1
The results are grouped first on problem ID and then the group that looked at the problem. Each row represents the time it spent in a particular status. The '1' represents a formula which says:
If DateDiff("n", {Start Date and Time},
{End Date and Time}) > 60 Then 1 Else 0
What I want to achieve is to have the '1' appear just once for each record i.e. this problem took more than one hour to resolve. If I can do this, I can then do a summary and get the number of problem records that were/were not resolved within one hour.
Thank you in advance.
I'm writing a report which examines helpdesk data i.e. whether a problem record was resolved within an hour or not.
An example of the output I have currently is as follows:
Case 1
Main Helpdesk
22/11/2005 08:32 18/01/2006 Assigned 13:33 1
18/01/2006 13:33 17/03/2006 Pending 13:14 1
The results are grouped first on problem ID and then the group that looked at the problem. Each row represents the time it spent in a particular status. The '1' represents a formula which says:
If DateDiff("n", {Start Date and Time},
{End Date and Time}) > 60 Then 1 Else 0
What I want to achieve is to have the '1' appear just once for each record i.e. this problem took more than one hour to resolve. If I can do this, I can then do a summary and get the number of problem records that were/were not resolved within one hour.
Thank you in advance.