Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi all, I am trying to total a time column. It is currently imported as
ddd:hh:mm:ss where ddd = days (not the day of the week). ANy ideas would be appreciated. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
SUM???
"Bridget" wrote in message ... Hi all, I am trying to total a time column. It is currently imported as ddd:hh:mm:ss where ddd = days (not the day of the week). ANy ideas would be appreciated. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'd use data|text to columns to separate the ddd from the hh:mm:ss.
Then add the two columns and then sum them. In B11: =sum(B1:B10)+sum(c1:c10) Then in B12: =TEXT(INT(A11),"000")&":"&TEXT(MOD(A11,1),"hh:mm:s s") Or don't use the data|text to columns and use these two formulas: with data in A1:A10, put this in A11: =SUMPRODUCT(--LEFT(A1:A10,3))+SUMPRODUCT(--RIGHT(A1:A10,8)) And put this in A12: =TEXT(INT(A11),"000")&":"&TEXT(MOD(A11,1),"hh:mm:s s") Bridget wrote: Hi all, I am trying to total a time column. It is currently imported as ddd:hh:mm:ss where ddd = days (not the day of the week). ANy ideas would be appreciated. -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dave,
This is getting me closer to an answer, but I don't have a solution yet. I get an error when I use all your examples. But I like this sum product idea and am investigating it further. Thanks "Dave Peterson" wrote: I'd use data|text to columns to separate the ddd from the hh:mm:ss. Then add the two columns and then sum them. In B11: =sum(B1:B10)+sum(c1:c10) Then in B12: =TEXT(INT(A11),"000")&":"&TEXT(MOD(A11,1),"hh:mm:s s") Or don't use the data|text to columns and use these two formulas: with data in A1:A10, put this in A11: =SUMPRODUCT(--LEFT(A1:A10,3))+SUMPRODUCT(--RIGHT(A1:A10,8)) And put this in A12: =TEXT(INT(A11),"000")&":"&TEXT(MOD(A11,1),"hh:mm:s s") Bridget wrote: Hi all, I am trying to total a time column. It is currently imported as ddd:hh:mm:ss where ddd = days (not the day of the week). ANy ideas would be appreciated. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
IF/AND/OR/DATEIF Issue...sorry...long post... | Excel Worksheet Functions | |||
creating a bar graph | Excel Discussion (Misc queries) | |||
Does excel recognise names rather than cells? | Excel Worksheet Functions | |||
how to add time total in msg box | Excel Discussion (Misc queries) | |||
How to calculate the data in excel 2002 including only the last 9. | Excel Worksheet Functions |