M
Madcap
All,
I am trying to develop a formula to calculate the difference betwee
one (date and time) and another (date and time) with the times being i
military format. I want the result to be displayed in (X hours:
minutes: X seconds). The data is, for example, a start (date and time
in cell K13 and an end (date and time) in K15. My (date and time) cell
are inputted like this:
4/24/04 6:12.
My problem with my current formula:
Start Time:
4/24/04 6:12
End Time:
4/27/04 0:17
Result:
"3 Days
18 Hours
5 Minutes"
The apparent issue is this duration is not even 3 full days.
My current formula is as follows:
=CONCATENATE(ROUND(ROUND(((K15-K13)*1440),)/1440,0)," Days
",TRUNC(MOD(ROUND((K15-K13)*1440,0),1440)/60)," Hours
",ROUND(MOD(ROUND((K15-K13)*1440,0),60),0), " Minutes")
I need it to display a result like:
"2 Days
18 Hours
5 Minutes"
I'm gettin a headache trying to figure it out. Please help!!!
I am trying to develop a formula to calculate the difference betwee
one (date and time) and another (date and time) with the times being i
military format. I want the result to be displayed in (X hours:
minutes: X seconds). The data is, for example, a start (date and time
in cell K13 and an end (date and time) in K15. My (date and time) cell
are inputted like this:
4/24/04 6:12.
My problem with my current formula:
Start Time:
4/24/04 6:12
End Time:
4/27/04 0:17
Result:
"3 Days
18 Hours
5 Minutes"
The apparent issue is this duration is not even 3 full days.
My current formula is as follows:
=CONCATENATE(ROUND(ROUND(((K15-K13)*1440),)/1440,0)," Days
",TRUNC(MOD(ROUND((K15-K13)*1440,0),1440)/60)," Hours
",ROUND(MOD(ROUND((K15-K13)*1440,0),60),0), " Minutes")
I need it to display a result like:
"2 Days
18 Hours
5 Minutes"
I'm gettin a headache trying to figure it out. Please help!!!