I need an MS Excel Formula that generates the total time taken from a list of times.?Example.I have a list of times (clock times) and I need to get the total time (duration).5:30 am5:45 am6:15 am6:30 amThe total duration time spent should be 1 hour and 15 mins or 75min.Can I get an excel formula that does the above?...Show more
VBAXLMan2009-04-26T14:16:32ZFavorite AnswerI am not sure if I got you correct here, but let me try this...Option 1:Now, if you have that list starting from cell A1 downPaste this in B1=MINUTE(A1)+HOUR( A1)*60&"min"Then paste this down to get the othersThat is one possibility answer to your questionOption 2:Another one is this=HOUR( A1)&" hours and "&minute(A1)&" min"Option 3:Or this=SUM(A:A)Let me knowVBAXLMan...Show more00
Anonymous2009-04-23T23:55:13ZNot with the information you gave, to calculate duration, you need a start time and ending time, and you do not specify which times are start and which are end.If A1 is end time and A2 is start time andif B1 is end time and B2 is start timeIn A3 put =(A2-A1)+(B2-B1)...Show more00