我有一个代码,它将得到一个列,其中有不同的持续时间。格式是“hh:mm:ss”。我需要把所有这些加起来(这将超过24小时),并在最后以相同的格式得到一个总数。有没有办法在MySQL中做到这一点?
standbyTime = CDate(ThisWorkbook.Worksheets("Sheet1").Cells(dateCell.Row, "U").Value)
failureTime = CDate(ThisWorkbook.Worksheets("Sheet1").Cells(dateCell.Row, "W").Value)
powerOffTime = CDate(ThisWorkbook.Worksheets("Sheet1").Cells(dateCell.Row, "X").Value)
If (ThisWorkbook.Worksheets("Sheet1").Cells(dateCell.Row, "W").Value <> "") Then
operationalTime = TimeValue(failureTime) - TimeValue(standbyTime)
Else
operationalTime = TimeValue(powerOffTime) - TimeValue(standbyTime)
End If
totalTime = totalTime + operationalTime
字符串
这段代码会随时间滚动。
输出的格式应该是100:35:20
有什么想法吗?
1条答案
按热度按时间wnavrhmk1#
示例:
的数据
假设你在单元格中有这些值,那么代码将是:
字符串
确保使用Value2