Hello,
I have two datetime fields (created, modified) and a calculated field (Time Taken). The Time Taken field is the difference between the Modified and Created fields. The code I am using is below.
This works fine for me in giving me the total hours between created and modified, but the problem I am having is when the Time Taken field goes over 24 hours I would want it to display 1 Day, 2:32 instead of 26:32
Thanks,
Demopro
I have two datetime fields (created, modified) and a calculated field (Time Taken). The Time Taken field is the difference between the Modified and Created fields. The code I am using is below.
Code:
=IF(NOT(ISBLANK([Modified])),([Modified]-[Created])*24,0)
This works fine for me in giving me the total hours between created and modified, but the problem I am having is when the Time Taken field goes over 24 hours I would want it to display 1 Day, 2:32 instead of 26:32
Thanks,
Demopro