Marvin,
I don't know if it's the best way but it's a way...
Extract the number of minutes from each row into a new column, SUM those minutes then extract the SUM back into the text version.
| D | E |
---|
Period | | |
21 days 17 hours 44 minutes | | |
13 days 01 hours 43 minutes | | |
22 days 02 hours 30 minutes | | |
56 days 21 hours 57 minutes | | |
<tbody>
[TD="align: center"]1[/TD]
[TD="align: center"]Minutes[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]31304[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]18823[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]31830[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]81957[/TD]
</tbody>
marvin jones
[TABLE="width: 85%"]
<tbody>[TR]
[TD]
Worksheet Formulas[TABLE="width: 100%"]
<tbody>[TR]
[TH]Cell[/TH]
[TH="align: left"]Formula[/TH]
[/TR]
[TR]
[TH]E2
to E4[/TH]
[TD="align: left"]=(
LEFT(D2,SEARCH("days",D2)-1)*1440)+(
MID(D2,SEARCH("days",D2)+4,SEARCH("hours",D2)-(SEARCH("days",D2)+4))*60)+MID(
D2,SEARCH("hours",D2)+5,SEARCH("minutes",D2)-(SEARCH("hours",D2)+5))[/TD]
[/TR]
[TR]
[TH]D5[/TH]
[TD="align: left"]=INT(
E5/1440)&" days "&(
INT(MOD(E5,1440)/60))&" hours "&INT(
MOD(MOD(E5,1440),60))&" minutes"[/TD]
[/TR]
[TR]
[TH]E5[/TH]
[TD="align: left"]=SUM(
E2:E4)[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[/TR]
</tbody>[/TABLE]