Rounding time values up and down

D

durbat2

Sorry if this has been asked before but i have time values in cells
formatted h.hh
I need to round the values to the nearest hour for example a time of
13:15 needs to be rounded to 13 and a time of 08:45 would be rounded
to 09

Hope this makes sense

Martin
 
G

google

If you multiply by 24 (hours in a day), round it off, then divide by
24, it appears to work.

e.g. =ROUND(A1*24,0)/24
 
D

David Biddulph

I don't understand the logic of formatting as h.hh. Why would you want to
display 13:15 as 13.13 ?

If you've got a number in Excel time format, =MROUND(A1,1/24) will round to
the nearest hour, and you can then format to suit your requirements (which
sounds like hh).
 

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

Top