Time Calculation Help

Kyosti

Board Regular
Joined
Jun 2, 2008
Messages
90
I have very large time values that I am trying to add in order to use the value in another calculation. It is a very simple formula that I know works:

=sum(a1+b1)

In the case of the following it works perfectly:

9743:53:41 + 18409:10:00 = 28153:03:41

However on the following it does not:

10801:01:57+18409:10:00= #Value!

The value 10801:01:57 does not seem to be looked at as a time value as it is automatically changed into a text type of format. When I change the format to the proper time format, the result is the same.

Does anyone have any clue as to what is causing this?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Try this array formula ( method pinched from Barry Houdini actually ), entered using Ctrl-Shift-Enter instead of Enter:

=SUM(IF(ISNUMBER(A1:B1+0),A1:B1,RIGHT(A1:B1,7)+LEFT(A1:B1,LEN(A1:B1)-7)*10/24))
 
Upvote 0
Thanks for the reply. While the formula looked very promising, it still does not give the expected value. In addition it will not let me format into a time format.

Any other suggestions???
 
Upvote 0
I take that back, even though I was using ctrl-shift enter, it was not giving me the correct values at first.

Now it is


Thanks!!!
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,134
Members
452,890
Latest member
Nikhil Ramesh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top