本文介绍了如何在 Google 表格中求和持续时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Time started time end Duration
6:02:53 PM 6:11:07 PM 0:08:13
6:11:22 PM 6:20:33 PM 0:09:11
6:20:48 PM 6:32:21 PM 0:11:34
6:32:44 PM 6:39:04 PM 0:06:20
6:39:28 PM 7:00:41 PM 0:21:13
7:01:00 PM 7:09:16 PM 0:08:16
7:09:40 PM 7:16:03 PM 0:06:23
7:16:03 PM 7:24:21 PM 0:08:17
7:24:45 PM 7:30:57 PM 0:06:12
7:31:27 PM 7:37:21 PM 0:05:54
7:37:21 PM 7:44:06 PM 0:06:45
我想要 x 小时 x 分钟 x 秒 中所有持续时间条目的总和,就像我尝试使用 =SUM 时有超过 1000 行 的持续时间(C2:C100)
在 24:00:00
从 00:00:00
开始的 24 小时之后,我没有得到总持续时间的总和
I want sum of all duration entries in x hours x minutes x seconds like i have more then 1000 rows of duration when i try to use =SUM(C2:C100)
I am not getting sum of total duration after sum of 24:00:00
24 hours it starts from 00:00:00
例如总持续时间在 c1:c8
范围内得到 24:00:00
它将从 00:00:00
开始> 来自 c9: next range
请帮助我如何克服这个问题
for example sum of total duration gets 24:00:00
between range of c1:c8
it will start from 00:00:00
from c9: next range
kindly assist me how to overcome this issue
推荐答案
尝试:
=ARRAYFORMULA(TEXT(SUM(IFERROR(TIMEVALUE(C:C))), "[h]:mm:ss"))
这篇关于如何在 Google 表格中求和持续时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!