SOLVED

Excel Time Function

Copper Contributor

In this time function column if we drag the cursor on the time format it is not showing the SUM in Taskbar sir. Only the count of the no of rows in the column is shown. I want to have the sum of the time in the above time column sir.

Column J and K time function is in text format sir. And using the Time format i have converted it into time format sir but for time less than 24 hours the solution is right but for more than 24 hours it is not giving the correct answer using Custom format [H]:MM:SS also sir.

After 24 hours of time it is giving the Remainder answer to the solution sir. If it is 26:00 hours the solution is giving as 2:00 hours. Please solve it sir.

5 Replies

@kiranjab 

=SUM(MID(J3,{1;5;8},{3;2;2})/{24;1440;86400})
best response confirmed by allyreckerman (Microsoft)
Solution
=TEXT(RIGHT(J5,8),"[hh]:mm:ss")


Thank you sir. It worked
sir it is working for less than 100 hours only sir i.e, 99:59:59

@kiranjab 

I guess @Riny_van_Eekelen already answered in another thread. Something like

=TIMEVALUE(IF(LEFT(J3)="0",REPLACE(J3,1,1,),J3))
1 best response

Accepted Solutions
best response confirmed by allyreckerman (Microsoft)
Solution
=TEXT(RIGHT(J5,8),"[hh]:mm:ss")


View solution in original post