I am pulling data in from another spreadsheet which is call statistics for a call centre.
The call centre staff have an option to out their phone on "Not Ready" and when they do this they have to enter an activity code, 1, 2 or 3. When a report is produced for the phone data and I read it in to my sheet it comes formatted like this:
I need to split this value in to three different colums so I only take the individual time values.
The problem is, If the employee doesnt use activity code 2 then the data may be as follows:
Therefore I also need to do some sort of lookup before pulling the value out for 2 and if it doesn't exist default the column to 00:00:00.
Can anyone point me in the right direction?
The call centre staff have an option to out their phone on "Not Ready" and when they do this they have to enter an activity code, 1, 2 or 3. When a report is produced for the phone data and I read it in to my sheet it comes formatted like this:
Code:
1. 00:00:00, 2. 00:00:00, 3. 00:00:00
I need to split this value in to three different colums so I only take the individual time values.
The problem is, If the employee doesnt use activity code 2 then the data may be as follows:
Code:
1. 00:00:00, 3. 00:00:00
Therefore I also need to do some sort of lookup before pulling the value out for 2 and if it doesn't exist default the column to 00:00:00.
Can anyone point me in the right direction?