How do I round time?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to build a timecard database in Excel. How do I go about
rounding the time to the nearest 1/4 hour? Is this even possible? I tried
using the MROUND function but you have to specify a specific number to round
to and since I'm dealing with timecards, the numbers are always different.
Any ideas?
 
I am trying to build a timecard database in Excel. How do I go about
rounding the time to the nearest 1/4 hour? Is this even possible? I tried
using the MROUND function but you have to specify a specific number to round
to and since I'm dealing with timecards, the numbers are always different.
Any ideas?

Since you are using MROUND, you can use the formula:

=mround(A1,TIME(0,15,0))

Or, if you do not want to have the ATP installed:

=ROUND(K1/(0.25/24),0)*(0.25/24)

(0.25/24 is the equivalent of 1/4 hour in Excel time and equals TIME(0,15,0))


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Round Function 5
Rounding problems 6
Alternate Rounding Up & Down of .50 in a column 5
Round up to next .5 5
MRound Formula 3
Rounding Time. 4
Round time to quarter hour 15
Round Up and Round Down Time 1

Back
Top