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

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

DonkeyOte

MrExcel MVP
Joined
Sep 6, 2002
Messages
9,124
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,195,920
Messages
6,012,310
Members
441,690
Latest member
CyberWrek

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
Top