I am currently trying to design a spreadsheet to keep track of employee metrics for a call center. I have six different employees, and I'm keeping track of the percentage of total calls that each employee takes over the course of a given week. It looks something like this:
A|...B...|..C.|...D..|..E...|...F...|...G...|...H...|....I....|.......J........
1|Staff.|.Bill.|.8/8.|.8/9.|.8/10.|.8/11.|.8/12.|.Total.|.% Calls Answered
2|.Calls.|.....|..21.|.16..|..19...|..25...|..14...|...95...| 22%
This is a bit simplified, but it should be sufficient. Now obviously, the percentage of total calls is based on a total of all calls taken by all six employees in the department. The problem I'm running into is that I would like to make another column that keeps track of the % of calls answered, adjusted for days off. If an employee is out of the office for two days during the week, I want to know quickly and easily how efficiently they worked on the days that they were present, without handicapping their numbers based on the fact that they weren't in the office for a couple of days. I was thinking that this might be possible with some complicated if-then process, but I feel like it should be more simple than that. Any advice on a possible solution? Thanks in advance!
A|...B...|..C.|...D..|..E...|...F...|...G...|...H...|....I....|.......J........
1|Staff.|.Bill.|.8/8.|.8/9.|.8/10.|.8/11.|.8/12.|.Total.|.% Calls Answered
2|.Calls.|.....|..21.|.16..|..19...|..25...|..14...|...95...| 22%
This is a bit simplified, but it should be sufficient. Now obviously, the percentage of total calls is based on a total of all calls taken by all six employees in the department. The problem I'm running into is that I would like to make another column that keeps track of the % of calls answered, adjusted for days off. If an employee is out of the office for two days during the week, I want to know quickly and easily how efficiently they worked on the days that they were present, without handicapping their numbers based on the fact that they weren't in the office for a couple of days. I was thinking that this might be possible with some complicated if-then process, but I feel like it should be more simple than that. Any advice on a possible solution? Thanks in advance!