Help to creat a time sheet

Ahmez

New Member
Joined
Jul 14, 2015
Messages
2
Hello,

Firstly, thank you very much to the great minds behind this website and its users.

I would like to create an out of office time-sheet for staff members who works overtime.

Our policy is we pay in 15 minutes block.

For example, say John has received a work-related phone call lasting 5 minute on Monday, we pay him for 15 minutes. On Tuesday he received a call lasting for 16 minutes, we pay him for 30 minutes. On Wednesday he received 2 calls, the 1st call lasted for 13 minutes and 2nd lasted for 12 minutes, what formula should I use for excel to add all the minutes worked on the Wednesday together and then round it up to 15 minutes block.
The number of call received per day will vary. On Thursday, John may receive 5 calls or 1 call. Each call is recorded on a different row.

I know how to round the minutes up to 15 minutes block. I will really appreciate your help in creating a formula for excel to add the minutes of call receive per day and then round up.


Thank you very much
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
If I understand correctly, this might be what you're looking for. Columns F and G comprise a report on the raw data.


Excel 2012
ABCDEFG
1DayCallPay (per call)
2Mon515Pay (per call basis)Pay (per day basis)
3Tue1630Mon1515
4Wed1315Tue3030
5Wed1215Wed3030
6Thu515Thu10575
7Thu715Fri9075
8Thu1215Sat1515
9Thu1630Sun6045
10Thu2130
11Fri115
12Fri1630
13Fri1515
14Fri2930
15Sat1115
16Sun615
17Sun3745
Sheet50
Cell Formulas
RangeFormula
F3=SUMIFS($C$2:$C$17,$A$2:$A$17,E3)
F4=SUMIFS($C$2:$C$17,$A$2:$A$17,E4)
F5=SUMIFS($C$2:$C$17,$A$2:$A$17,E5)
F6=SUMIFS($C$2:$C$17,$A$2:$A$17,E6)
F7=SUMIFS($C$2:$C$17,$A$2:$A$17,E7)
F8=SUMIFS($C$2:$C$17,$A$2:$A$17,E8)
F9=SUMIFS($C$2:$C$17,$A$2:$A$17,E9)
G3=ROUNDUP(SUMIFS($B$2:$B$17,$A$2:$A$17,E3)/15,0)*15
G4=ROUNDUP(SUMIFS($B$2:$B$17,$A$2:$A$17,E4)/15,0)*15
G5=ROUNDUP(SUMIFS($B$2:$B$17,$A$2:$A$17,E5)/15,0)*15
G6=ROUNDUP(SUMIFS($B$2:$B$17,$A$2:$A$17,E6)/15,0)*15
G7=ROUNDUP(SUMIFS($B$2:$B$17,$A$2:$A$17,E7)/15,0)*15
G8=ROUNDUP(SUMIFS($B$2:$B$17,$A$2:$A$17,E8)/15,0)*15
G9=ROUNDUP(SUMIFS($B$2:$B$17,$A$2:$A$17,E9)/15,0)*15
C2=ROUNDUP(B2/15,0)*15
C3=ROUNDUP(B3/15,0)*15
C4=ROUNDUP(B4/15,0)*15
C5=ROUNDUP(B5/15,0)*15
C6=ROUNDUP(B6/15,0)*15
C7=ROUNDUP(B7/15,0)*15
C8=ROUNDUP(B8/15,0)*15
C9=ROUNDUP(B9/15,0)*15
C10=ROUNDUP(B10/15,0)*15
C11=ROUNDUP(B11/15,0)*15
C12=ROUNDUP(B12/15,0)*15
C13=ROUNDUP(B13/15,0)*15
C14=ROUNDUP(B14/15,0)*15
C15=ROUNDUP(B15/15,0)*15
C16=ROUNDUP(B16/15,0)*15
C17=ROUNDUP(B17/15,0)*15
 
Upvote 0
You're welcome, I'm glad I sufficed. Excellent? Not even close! but thanks for saying so.
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,836
Members
452,947
Latest member
Gerry_F

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