Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default summing up hours spent on jobs

I am trying to track time spent on jobs and I have my hours totaled using the
following format: =TEXT(D5-C5,"h:mm")

However, Now I want to total all these numbers and cannot figure out the
format to do that.

Any ideas?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 427
Default summing up hours spent on jobs

So it sounds like the start time is in col C, the end time in D, and
the elapsed time in another column, maybe E. In your elapsed time
formula you're using the TEXT function, which performs the math but
then converts the result to a text entry for formatting. That's why
you don't see results when you try to sum the elapsed time: it's all
letters.

As a workaround, you can sum the end times in column D, sum the start
times in C, subtract C from D to get elapsed time, and apply the TEXT
function again, perhaps something like this:
=TEXT(SUM(D5:D21)-SUM(C5:C21),"h:mm")

Will that do the trick?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default summing up hours spent on jobs

=TEXT(D5-C5,"h:mm")

That formula is returning a TEXT string. You should use this formula:

=D5-C5

And format the cell as h:mm

Then, to get the total from a range:

=SUM(.........)

And format that cell as [h]:mm

Biff

"kayti57" wrote in message
...
I am trying to track time spent on jobs and I have my hours totaled using
the
following format: =TEXT(D5-C5,"h:mm")

However, Now I want to total all these numbers and cannot figure out the
format to do that.

Any ideas?



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
Date and Time Response- before/during/after Business hours ECLynn Excel Discussion (Misc queries) 1 September 7th 06 06:46 PM
how do I calculate hours spent x an hourly rate? JC Excel Worksheet Functions 2 January 5th 06 04:32 PM
adding rows of hours and minutes to get a total Tipps Excel Worksheet Functions 1 November 4th 05 07:03 PM
Summing hours Driver Excel Worksheet Functions 1 October 25th 05 10:55 PM
How do I calculate the hours spent on a project by entering a sta. joeh Excel Worksheet Functions 4 November 2nd 04 06:39 PM


All times are GMT +1. The time now is 12:43 PM.

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"