Times.....

Ampleford

Active Member
Joined
Mar 26, 2002
Messages
380
I have a spreadsheet which calculates and shows peoples attendance times. However, the "Total Time Worked" column (say Column B) shows 07:55 hrs or 08:13 hrs. I'd like to round it so that if they do (up to) three minutes into a quarter, then it rounds down, but if they do more than three minutes into a quarter, it rounds up to the next quarter hour.

eg - Employee A works 08:03 hours = Paid 8.00, Employee B works 08:04 hours = Paid 8.25


Can anyone assist me?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
does this work for you ?

=HOUR(A1)+(IF(ROUND((MINUTE(A1)/15)-TRUNC(MINUTE(A1)/15),2)<0.27,MROUND(MINUTE(A1),15),CEILING(MINUTE(A1),15))/60)

assumes A1 = time worked - ie 08:03, 08:04 etc...
 
Upvote 0

Forum statistics

Threads
1,214,909
Messages
6,122,189
Members
449,072
Latest member
DW Draft

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