A requirement of my job is that I need to be on the phone for 0:24 minutes, out of every hour that I am working. I decided to create a spreadsheet this weekend, in order to help me stay more focused in achieving my daily goal of 2:00 hours of talk time.
I am hoping someone can offer some help to me in creating the formulas I need.
Columns F through J, contain the duration of the call. IE "0:30:00" = half hour. Calls can range from only seconds to even over an hour long.
C7 = Shift start time
C8 = Shift end time
C9 = Time excluded from actual 'normal' phone time. IE If you're in a meeting for an hour, you would type "1:00:00", and that "hour" of time would not require phone time too.
C14 = Subtotal of all call durations
C15 = Talk Time still needed
C16 = % of Goal completed.
So, if I'm scheduled to work 12:00 PM ~ 5:00 PM, that would be 5 working hours. For every hour, I need 0:24 minutes of talk time. Therefor my 5 hour shift, would require me talking on the phone for 2 hours.
Any help you can offer with the formulas that are needed would be a huge help. I'm ready to pull my hair out! :)
1. Do you mean that for each row of F to J represents the call duration for one hour?
2. If the talk time is 12 min for hour 1 but 36 min for hour 2, would the value for still needed is 12 min?
3. Is the percentage of goal calculated on hour-based (i.e. hours with target met / total hours)?
Please clarify.
Geekamo
ASKER
Columns F through J - Each time I finish a call, I will be typing values into those cells. Any cell within columns F through J. Consider those columns just a large scratch pad area to randomly type in call durations, the row or column itself has no meaning.
I'm not sure where the 12 minutes is coming from? For every hour worked, 24 minutes of talk time is required.
So basically, I want a spreadsheet that I can input...
My start time
My end time
Call durations
And it will calculate, and answer these questions....
Subtotal - Would be to total sum of all call durations, so basically this is the only formula I do know. It would be "=SUM(F:J)"
Still Need - Would be my 2 hour target MINUS the call durations
Does that clarify things? I'm sorry for the confusion.
@ Geekamo, thanks for clarification. Please see attached. Thank you. TimeCalculation-v2.xlsx
honestman31
Geekamo , I don't know what you don't like about it ?
you will need to enter the time of calls Vertically in column "F"
C14 =SUM(F2:F200) , shows the sub-totla correctly ( you have up to 200 calls , , you can increase if you want to )
C15 is correct
C16 is correct
so what u don't like about it ?
Geekamo
ASKER
@ honestman31
It's not that I don't like your solution, it just doesn't exactly do what I was envisioning. And I think it's of my own fault, I didn't give the best explanation of how I wanted this spreadsheet to work.
Your solution / attachment - is exactly what I was looking for. I have changed the start & end times, exclude, call durations, etc - and it is returning the correct answers. There's only one slight thing I noticed,... the 100% never goes higher?
For example, on a day were I worked 5 hours, and I was on the phone for 3 hours, then my % of Goal would be over 100%.
Geekamo
ASKER
@ pkwan
I will admit, when it comes to formulas - I am lost. As I step through each part of your formula, I "think" I understand what it's doing - what's really confusing me though is "MAX".
I know if =MAX(A1:A10) was used, it would return the MAX value in that range. But I don't understand it's use in your formula. Could you elaborate?
1) If the % of goal needs to be over 100%, just replace the formula in C16 with
=C14/((C8-C7-C9)*24/60)
2) honestman31 is correct. I used max to return whichever is the greater. If the value of the formula "(C8-C7-C9)*24/60-C14" is greater than 0, then returns its value. Otherwise, it will return 0. I used it because if your call durations are over the target, there is no point to have a negative value for "Still needed".
Geekamo
ASKER
@ honestman31
Thanks for the explanation of MAX in the formula.
When I first started working on this spreadsheet, I had many "supporting" cells on another part of the spreadsheet. I can only write basic formulas, so usually when I want to get to an answer - I have to break it down into steps. After I was working on it for a while, I realized how many supporting cells I needed in order for me to get answers into the cells you guys were working on. And when I finally gave up and posted here, is when I ran into the problem of that cell reading negative values. That was the moment I gave up! lol
Geekamo
ASKER
@ pkwan
Thank you very much for taking the time in helping me. I am so excited and can't wait to officially start using it on Monday! And thank you for the revision of the % formula.