Round UP Time

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

Guest

I have a time stamp like this:

11:23:20 AM

I would like to find a funtion that rounds the time up to the next whole
minute:

11:24:00 AM

Is it possible ?

Thank you in advance.
 
Time in XL is stored as fractional days, so rounding up to 1/(24*60)
will work. One way:

=ROUNDUP(A1*1440,0)/1440

or

=CEILING(A1,"0:1")
 

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

Back
Top