Forum Discussion
Ka_ChunL
Oct 21, 2024Copper Contributor
Convert the text to date and time format, calculate the processing tim
Hi Expertise, I need your help. I have a problem about the sum of processing time from the data in text format as below. Can i get the answer of the sum of the following 2 jobs as 2 Days, 1 Hour, 15...
HansVogelaar
Oct 21, 2024MVP
In D2:
=INT(24*(C2-B2))
In E2:
=INT(MOD(1440*(C2-B2), 60))
In F2:
=MOD(86400*(C2-B2), 60)
Fill down.
For the sum:
Days:
=INT(SUM(C2:C3-B2:B3))
Hours:
=MOD(INT(24*SUM(C2:C3-B2:B3)), 24)
Minutes:
=MOD(INT(1440*SUM(C2:C3-B2:B3)), 60)
Seconds:
=MOD(86400*SUM(C2:C3-B2:B3), 60)
- Ka_ChunLOct 22, 2024Copper ContributorHi HansVogelaar,
Thanks for your great help : )