Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi all,
I have a column of numbers in [hh]:mm format. Now I want to round up each time to the next 15 minutes, e.g. 15:43 - 15:45 15:46 - 16:00 The ROUNDUP function does not provide a direct solution for me. Any suggestion? Thanks a lot. Frederick Chow Hong Kong. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=CEILING(A1,1/96) XL stores times as fractional days, so 15 minutes = 1/96 day. In article , "Frederick Chow" wrote: Hi all, I have a column of numbers in [hh]:mm format. Now I want to round up each time to the next 15 minutes, e.g. 15:43 - 15:45 15:46 - 16:00 The ROUNDUP function does not provide a direct solution for me. Any suggestion? Thanks a lot. Frederick Chow Hong Kong. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Oh! Thanks for reminding me the CEILING and FLOOR function can do the
tricks. Thanks for your reminder. Fredeick Chow Hong Kong "JE McGimpsey" wrote in message ... One way: =CEILING(A1,1/96) XL stores times as fractional days, so 15 minutes = 1/96 day. In article , "Frederick Chow" wrote: Hi all, I have a column of numbers in [hh]:mm format. Now I want to round up each time to the next 15 minutes, e.g. 15:43 - 15:45 15:46 - 16:00 The ROUNDUP function does not provide a direct solution for me. Any suggestion? Thanks a lot. Frederick Chow Hong Kong. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=ROUNDUP(A2*96;0)/96
-- HTH -- AP "Frederick Chow" a écrit dans le message de ... Hi all, I have a column of numbers in [hh]:mm format. Now I want to round up each time to the next 15 minutes, e.g. 15:43 - 15:45 15:46 - 16:00 The ROUNDUP function does not provide a direct solution for me. Any suggestion? Thanks a lot. Frederick Chow Hong Kong. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks very much for your alternative version! Though more obscure, your
version does make sense to me. Frederick Chow Hong Kong. "Ardus Petus" wrote in message ... =ROUNDUP(A2*96;0)/96 -- HTH -- AP "Frederick Chow" a écrit dans le message de ... Hi all, I have a column of numbers in [hh]:mm format. Now I want to round up each time to the next 15 minutes, e.g. 15:43 - 15:45 15:46 - 16:00 The ROUNDUP function does not provide a direct solution for me. Any suggestion? Thanks a lot. Frederick Chow Hong Kong. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() A slight variation to perhaps make the purpose a little more transparent =CEILING(A1,"00:15") -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=519089 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
convert interval to various separate date , time, hr, minutes | Excel Worksheet Functions | |||
Convert hours and minutes in time format into fractions of hours.. | Excel Worksheet Functions | |||
convert decimal number to time : convert 1,59 (minutes, dec) to m | Excel Discussion (Misc queries) | |||
Round Time | Excel Worksheet Functions | |||
Round Time | Excel Worksheet Functions |