Duplicate Data Question

dizzneeguy

New Member
Joined
Aug 19, 2011
Messages
6
Hi Everyone,

I have a unique question I can't seem to find an answer for anywhere. The ultimate answer may be that Excel isn't the right tool for the job but thought before taking time to involve "real" developer resource at my office I'd see if I can come up with a viable solution.

The issue is this - I have a list of thousands of upon thousands of customer calls to my call center, in which each row provides me the phone number of the person calling, the date they called, the agent they spoke to at my center, and the nature of their call. I'm trying to capture something called First Call Resolution rate (or FCR) with this data and essentially want to look for customers who have called more than once, and then be able to determine why they called and who they spoke with. I think that's pretty easy to get to with a Pivot table so I feel alright there.

However, I also want to determine the FCR rate for each agent. So for example, using the raw data I can see that John Doe spoke with two customers on Monday. One was customer 555-555-5555 and the other was customer 444-444-4444. While 444-444-4444 never had to call back, I do see that 555-555-5555 called back the next day. Therefore, John Doe's FCR rate is 50%. (50% of the customers he spoke to had to call back.) The ideal "next level" would be to be able to customize a call back window so customers calling back X days later are considered new contacts and wouldn't count against FCR. Also, setting up so a customer calling back for an entirely different reason also wouldn't count against FCR.

Tall order I know, but surely with the raw data in hand in Excel, there is some way to work up a filter, query or pivot that let's me answer these questions?

Thanks!

~ Chris
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
For the screen shot in Post #2, modify the formula in F2 by adding a criterion for the Agent.

=IF(COUNTIFS(Phone,$A2,Agent,$C2,DateTime,"<"&B2,DateTime,">="&B2-CallBackWindow),0,1)

The formulas in Col G do not need to be modified.
 
Upvote 0
At first glance it seems to be working as I want it to, I will need to dig through the data to be sure.

Thank you very much Jerry, I am not sure I could have come up with an easy solution such as this!!
 
Upvote 0

Forum statistics

Threads
1,224,618
Messages
6,179,917
Members
452,949
Latest member
beartooth91

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top