C
cvandijk07
Hello All,
I am starting the development of a new application for one of our departments
and while meeting about what they were interested in yesterday I got a
strange request for the program. The premise of the program is to schedule
inspectors to do specific inspections and record when each of these
inspections are done and the certificates that they are issued which let
others know that the appropriate inspection is done.
The part that they requested be included in this new application is to
automatically assign an inspector to an inspection based on a rotating list.
Essentially, creating a table which contains the list of inspectors and their
respective ID's assigning inspector 1 to task 1, inspector 2 to the next task
and so on continuing to rotate through inspectors as the tasks are created.
The person in charge now wants to ensure that the work is fair and equally
distributed to each inspector.
So far, I have created two tables - tblInspector and tblInspections.
tblInspector contains InspectorID (primary key, autonumber) and InspectorName.
tblInspections contains all the pertinent inspection information and contains
InspectorID as a foreign key.
I followed some steps found in another forum for creating a similar type of
form, however, the form only works when you open it and once you cycle
through the list of inspectors, it doesn't start from the top of the list
correctly. I want to include a button for adding new inspections that moves
the next entry automatically to the next inspector.
I hope someone understands what I have described above and could point me in
the right direction as to how this could possibly work.
Thanks and if you have any questions please contact me.
Chris
I am starting the development of a new application for one of our departments
and while meeting about what they were interested in yesterday I got a
strange request for the program. The premise of the program is to schedule
inspectors to do specific inspections and record when each of these
inspections are done and the certificates that they are issued which let
others know that the appropriate inspection is done.
The part that they requested be included in this new application is to
automatically assign an inspector to an inspection based on a rotating list.
Essentially, creating a table which contains the list of inspectors and their
respective ID's assigning inspector 1 to task 1, inspector 2 to the next task
and so on continuing to rotate through inspectors as the tasks are created.
The person in charge now wants to ensure that the work is fair and equally
distributed to each inspector.
So far, I have created two tables - tblInspector and tblInspections.
tblInspector contains InspectorID (primary key, autonumber) and InspectorName.
tblInspections contains all the pertinent inspection information and contains
InspectorID as a foreign key.
I followed some steps found in another forum for creating a similar type of
form, however, the form only works when you open it and once you cycle
through the list of inspectors, it doesn't start from the top of the list
correctly. I want to include a button for adding new inspections that moves
the next entry automatically to the next inspector.
I hope someone understands what I have described above and could point me in
the right direction as to how this could possibly work.
Thanks and if you have any questions please contact me.
Chris