Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Using the following formula to round to the nearest minute:
=ROUND(A1/(1/1440),0)*1/1440 This one rounds up at the 30-second mark. Need to make it so that after 6 seconds the time is rounded up to the next minute. Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The easiest way would be to just add 24 minutes like so:
=ROUND(A1/(1/1440)+24/60,0)*1/1440 -- John C "bbarkman" wrote: Using the following formula to round to the nearest minute: =ROUND(A1/(1/1440),0)*1/1440 This one rounds up at the 30-second mark. Need to make it so that after 6 seconds the time is rounded up to the next minute. Thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi bbarkman
Try =TIME(HOUR(A1),MINUTE(A1)+(SECOND(A1)6),0) o =TIME(HOUR(A1),MINUTE(A1)+(SECOND(A1)=6),0) Regards, Pedro J. Using the following formula to round to the nearest minute: =ROUND(A1/(1/1440),0)*1/1440 This one rounds up at the 30-second mark. Need to make it so that after 6 seconds the time is rounded up to the next minute. Thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rounding Up To Nearest Minute | Excel Discussion (Misc queries) | |||
how do i round time to the nearest half a minute | Excel Discussion (Misc queries) | |||
How do you round up to nearest 10??? | Excel Discussion (Misc queries) | |||
round to the nearest 1/8 | Excel Discussion (Misc queries) | |||
roundup seconds to minute | Excel Worksheet Functions |