LeonelSanchezJr
Programmer
Here's a sample of my data: (Time is in seconds)
RecordNumber Start_Time Stop_Time
1 43240 43445
2 43630 43730
3 44120 44290
4 44650 44795
I have to calculate the WAIT TIME from records like these.
The WAIT TIME would be the Stop_Time From Record #1
minus the Start_Time from Record #2. The Stop_Time From Record #2 minus the Start_Time from Record #3. The Stop_Time From Record #3 minus the Start_Time from Record #4.
I would get the sum of all of these individual Wait Times and get one total. How can I do ths?
RecordNumber Start_Time Stop_Time
1 43240 43445
2 43630 43730
3 44120 44290
4 44650 44795
I have to calculate the WAIT TIME from records like these.
The WAIT TIME would be the Stop_Time From Record #1
minus the Start_Time from Record #2. The Stop_Time From Record #2 minus the Start_Time from Record #3. The Stop_Time From Record #3 minus the Start_Time from Record #4.
I would get the sum of all of these individual Wait Times and get one total. How can I do ths?