Golly! Thanks for the answer to my last question! I thought I’d push my luck a bit, and ask about a weird sort of running total problem.
Our database shows the arrive and depart times for each of the stops on each of our routes. We want to figure out the stop times for each customers, and the travel times to each customer from the last one.
Stop_#______Arrive Depart__stop min__travel min
# 0 start___________08:02_____________________
# 1_________09:30___09:40_____10_______88_____
# 2_________10:01___10:15_____14_______21_____
# 3_________10:46___10:58_____12_______31_____
# 4_________11:21___11:55_____34_______23_____
# 99 end____13:55_____________________120_____
It’s the last column that’s stumping me. How do I compare the depart time from row 1, to the arrive time on row 2, and then the depart time from row 2 to the arrive time on row 3?
Thanks again for any help you all may have
Rodger
P.S. I read an old post and saw how to change the sum of minutes to hh:mm:ss, so no need to explain that one )
Our database shows the arrive and depart times for each of the stops on each of our routes. We want to figure out the stop times for each customers, and the travel times to each customer from the last one.
Stop_#______Arrive Depart__stop min__travel min
# 0 start___________08:02_____________________
# 1_________09:30___09:40_____10_______88_____
# 2_________10:01___10:15_____14_______21_____
# 3_________10:46___10:58_____12_______31_____
# 4_________11:21___11:55_____34_______23_____
# 99 end____13:55_____________________120_____
It’s the last column that’s stumping me. How do I compare the depart time from row 1, to the arrive time on row 2, and then the depart time from row 2 to the arrive time on row 3?
Thanks again for any help you all may have
Rodger
P.S. I read an old post and saw how to change the sum of minutes to hh:mm:ss, so no need to explain that one )