In Google Sheets I have several time fields in the format dd:hh:mm:ss
| Sample Data |
|---|
| 00:00:00:00 |
| 12:09:54:47 |
| 00:01:14:23 |
| 00:00:00:00 |
I would like to add all the values to calculate the total.
I've done some reading and I know you can't simply sum them together as it "resets" each time you reach 24.
I found you can use the following formula but it doesn't seem to take into account days.
=ARRAYFORMULA(TEXT(SUM(IFERROR(TIMEVALUE(C2:C8))), "[h]:mm:ss"))Any ideas? I'm a bit stuck.
