Hi,
One way, and since your times are text rather than proper time numbers (i.e. decimals of a day) we need some string conversion involved, is as follows.
Add an extra row so that the data starts in A2
Now in C2 which should be formatted as time ("hh:mm") enter the following formula and copy down.
=(VALUE(LEFT(B2,2))*60+VALUE(RIGHT(B2,2)))/1440+IF(A2=A1,C1,0)
This will give you a cumulative daily total.
What I suspect you're really after is just the total for each day. In which case extract a unique list of dates into say column E, then change the formula above and leave out the last bit with the +IF
Now you can use SUMIF() to sum the daily totals from column C.
Regards
Bookmarks