Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am using the following:
=TEXT((J30/$B$31)/24, "h:mm") to convert hours and hundreths to hours and minutes. Excel is dropping the seconds and not rounding up. (e.g., 9:00:36 should round to 9:01) Any ideas? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Then you need to use round, btw is there any particular reason you are using
TEXT? =ROUND(A1/TIME(,1,),0)*TIME(,1,) will round the time value in A1 to nearest minute could look like =ROUND((J30/$B$31/24)/TIME(,1,),0)*TIME(,1,) of course that can be wrapped in TEXT -- Regards, Peo Sjoblom Northwest Excel Solutions Portland, Oregon "PJH" wrote in message ... I am using the following: =TEXT((J30/$B$31)/24, "h:mm") to convert hours and hundreths to hours and minutes. Excel is dropping the seconds and not rounding up. (e.g., 9:00:36 should round to 9:01) Any ideas? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Try =ROUND((J30/$B$31)*6,1)/144 format as [h]:mm -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=513450 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Thu, 16 Feb 2006 16:52:27 -0800, PJH wrote:
I am using the following: =TEXT((J30/$B$31)/24, "h:mm") to convert hours and hundreths to hours and minutes. Excel is dropping the seconds and not rounding up. (e.g., 9:00:36 should round to 9:01) Any ideas? You need to round your result to the nearest minute: =TEXT(ROUND((J30/$B$31)/24/TIME(0,1,0),0)*TIME(0,1,0), "h:mm") --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
round up a function RESULT | Excel Discussion (Misc queries) | |||
hh:mm - mm formated 2 round to .25, .50, .75 & 1 | Excel Worksheet Functions | |||
Round a number in nested function | Excel Worksheet Functions | |||
Round whole numbers up and down | Excel Discussion (Misc queries) | |||
How do I ROUND() round off decimals of a column dataset? | Excel Worksheet Functions |