Hi
I need help creating a module in access but I know very little VB. The module will calculate time continuums that will be summed later to get total effort. Here’s the scenario: two or three people record start and stop times when observing a colony. There are many start and stop times in a day, and there are overlapping times between observers as well as time gaps. What I want is the total number of hours the colony is being observed, no matter who or how many people observing.
I have tblEffortInput (Fields: Date, StartTime, StopTime; DataType: Date/Time) and tblEffortOutput (Date, ContinuumNumber, ContinuumStart, and ContinuumStop) to contain the outputs.
Here’s the pseudo-code:
Sort records ascending by Date, StartTime, and StopTime
For each Date
Read the first record
Set the first Continuum to the FIRST Start and Stop times
Next Record
Loop through remaining records until reaching the EndOfFile
Is the new START equal to or earlier than the Continuum STOP?
Yes: Is the new STOP greater than the Continuum STOP?
Yes: Update the Stop of the current Continuum (extends the Continuum to include this observation)
Next Record
No: Next Record
No: Record the current Continuum START and STOP (Ends this Continuum and starts a new one)
Begin a NEW Continuum.
Set current record START and STOP times as the Continuum START and STOP
Next Record
End Loop at EOF
I greatly appreciate your help. Thank you so much!
I need help creating a module in access but I know very little VB. The module will calculate time continuums that will be summed later to get total effort. Here’s the scenario: two or three people record start and stop times when observing a colony. There are many start and stop times in a day, and there are overlapping times between observers as well as time gaps. What I want is the total number of hours the colony is being observed, no matter who or how many people observing.
I have tblEffortInput (Fields: Date, StartTime, StopTime; DataType: Date/Time) and tblEffortOutput (Date, ContinuumNumber, ContinuumStart, and ContinuumStop) to contain the outputs.
Here’s the pseudo-code:
Sort records ascending by Date, StartTime, and StopTime
For each Date
Read the first record
Set the first Continuum to the FIRST Start and Stop times
Next Record
Loop through remaining records until reaching the EndOfFile
Is the new START equal to or earlier than the Continuum STOP?
Yes: Is the new STOP greater than the Continuum STOP?
Yes: Update the Stop of the current Continuum (extends the Continuum to include this observation)
Next Record
No: Next Record
No: Record the current Continuum START and STOP (Ends this Continuum and starts a new one)
Begin a NEW Continuum.
Set current record START and STOP times as the Continuum START and STOP
Next Record
End Loop at EOF
I greatly appreciate your help. Thank you so much!