Adding up times

R

Raistlin

I have used the formula below to work out the amount of hours from a start
time to a finish time for each day.

Start - Finish - Total Hours

=TEXT(D3-C3,"h:mm:ss")

It works fine and give me the result but if I try to add the weeks hours I
get is 00:00:00.

Each sell has a formula which shows the correct times but the value shown
can not be used.

I hope this makes sense as it has got me beaten.

Any help would be appreciated.

Tia
 
N

Niek Otten

You can't add text.

Replace this:

=TEXT(D3-C3,"h:mm:ss")

with:

=D3-C3

and format Custom as "h:mm:ss"

Format the total as Custom:

[h]:mm:ss

This will prevent the sum from topping over at 24 hours

--
Kind regards,

Niek Otten
Microsoft MVP - Excel



|I have used the formula below to work out the amount of hours from a start
| time to a finish time for each day.
|
| Start - Finish - Total Hours
|
| =TEXT(D3-C3,"h:mm:ss")
|
| It works fine and give me the result but if I try to add the weeks hours I
| get is 00:00:00.
|
| Each sell has a formula which shows the correct times but the value shown
| can not be used.
|
| I hope this makes sense as it has got me beaten.
|
| Any help would be appreciated.
|
| Tia
|
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top