Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 152
Default add 10,0015:15 hours to 03:53 Hours to a total time

when adding a hour number larger that 10,000 to another time number the
formula will not give a correct answer. Tried several time formats and
nothing worked. I need a format that is (HH,HHH:MM).
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,646
Default add 10,0015:15 hours to 03:53 Hours to a total time

Unfortunately 10,000 hours is an Excel limit, you have to find a workaround
for handling greater number of hours (e.g. work with plain numbers).

Regards,
Stefi

€žAlan€ť ezt Ă*rta:

when adding a hour number larger that 10,000 to another time number the
formula will not give a correct answer. Tried several time formats and
nothing worked. I need a format that is (HH,HHH:MM).

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,722
Default add 10,0015:15 hours to 03:53 Hours to a total time

As Stefi mentioned, you've run into a type of limit. XL doesn't recognize
"10000:15" as being a time value. However, you can do the mathematical
equivalent of

="3:00"+10000/24+15/(24*60)

with the middle term being your hours and last term being minutes.To get the
format you desire, you'll have to *fake* it, and use a formula similar to:

=TEXT(INT(A2*24),"#,###")&":"&MINUTE(A2)
where A2 is the cell containing previous formula.

the problem with this is you now have a text string as opposed to a number.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Alan" wrote:

when adding a hour number larger that 10,000 to another time number the
formula will not give a correct answer. Tried several time formats and
nothing worked. I need a format that is (HH,HHH:MM).

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default add 10,0015:15 hours to 03:53 Hours to a total time

Add it in two stages, 5000 and then another 5000.

--
__________________________________
HTH

Bob

"Alan" wrote in message
...
when adding a hour number larger that 10,000 to another time number the
formula will not give a correct answer. Tried several time formats and
nothing worked. I need a format that is (HH,HHH:MM).



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default add 10,0015:15 hours to 03:53 Hours to a total time

Even in ne formula it works

=K2+"5000:00:00"+"5000:00:00"

--
__________________________________
HTH

Bob

"Bob Phillips" wrote in message
...
Add it in two stages, 5000 and then another 5000.

--
__________________________________
HTH

Bob

"Alan" wrote in message
...
when adding a hour number larger that 10,000 to another time number the
formula will not give a correct answer. Tried several time formats and
nothing worked. I need a format that is (HH,HHH:MM).







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default add 10,0015:15 hours to 03:53 Hours to a total time

The largest time value that can be *manually* entered in a cell is
9999:59:59.

You can use formulas to return much higher time values, though. So, you'd
need to split your time into 2 cells:

A1 = 5000:00
A2 = 5000:00
A3 = 3:53

=SUM(A1:A3)

Returns 10003:53

--
Biff
Microsoft Excel MVP


"Alan" wrote in message
...
when adding a hour number larger that 10,000 to another time number the
formula will not give a correct answer. Tried several time formats and
nothing worked. I need a format that is (HH,HHH:MM).



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
using if statement to subtract 24 hours from time still shows as a negative time from both responses under 24 hours richard.littlewing Excel Worksheet Functions 2 September 15th 08 08:05 AM
Converting total number of hours (24 hours) into days MV Rao Excel Discussion (Misc queries) 1 January 24th 08 12:50 PM
Total time vs hours per shift WILSONLA001 Excel Worksheet Functions 1 October 19th 07 11:38 PM
calculating timesheet, time-in/time-out = total hours & minutes, . Steve Lindsay Excel Worksheet Functions 13 November 8th 06 03:45 PM
template or formula for start time -finish time -total hours ple cc New Users to Excel 1 March 27th 06 06:06 PM


All times are GMT +1. The time now is 05:25 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"