What I am trying to accomplish:
I need to produce a report which shows the number of incidents which occurred within 2-hour blocks during a 24-hour period. So, just to have a visual...
The Table names and Field names:
Primary Table = tblProcedures
Fields = Procedure#
Linked Table = tblNonconformance
Fields = Procedure#
NonconformanceTime (00:00 format)
Without resorting to creating another field in tblNonconformance for Time Blocks and then updating that field using parameter queries from the data from NonconformanceTime, is there any other way of accomplishing what I need to accomplish? I'm strictly a newbie when it comes to VB, so anyone volunteering to help would probably need to explain the steps I would need to take in detail.
I appreciate any and all help on this matter.
Kim
I need to produce a report which shows the number of incidents which occurred within 2-hour blocks during a 24-hour period. So, just to have a visual...
Code:
[b]2-Hour Blocks
Procedure # 0000 0200 0400 0600 etc…..
4.1[/b] 2 4
[b]6.3[/b] 1 5
[b]8.4[/b] 2 4 8
[b]9.2[/b] 3 4
The Table names and Field names:
Primary Table = tblProcedures
Fields = Procedure#
Linked Table = tblNonconformance
Fields = Procedure#
NonconformanceTime (00:00 format)
Without resorting to creating another field in tblNonconformance for Time Blocks and then updating that field using parameter queries from the data from NonconformanceTime, is there any other way of accomplishing what I need to accomplish? I'm strictly a newbie when it comes to VB, so anyone volunteering to help would probably need to explain the steps I would need to take in detail.
I appreciate any and all help on this matter.
Kim