Training Tracker

  • Thread starter Thread starter Fireman Joe
  • Start date Start date
F

Fireman Joe

Hello,
I need to set up a tracking system for Firefighter Certification Classes. I
have a "Firefighters" Table; Classes Table; Certification Table. Each
firefighter takes many required Classes to achieve a Certification. There are
many Certifications that each Firefighter is in the process of or has
acquired.

Firefighter Table: name, address, etc with a FirefighterID as the primary key
Classes Table: ClassID as primary key, Class Description; CertificationID
from Certificaton Table
Certification Table: CertificationID, Certification Name

That is where I get stuck. Here is what I ultimately want to know.

I want to know each class and completion date that a firefighter has taken
in each certification track. I want to know which class they still need in a
certification track. I want to know which classes would benefit the most
firefighters.

Any suggestions would be appreciated.

Thanks
 
Hello,
I need to set up a tracking system for Firefighter Certification Classes. I
have a "Firefighters" Table; Classes Table; Certification Table. Each
firefighter takes many required Classes to achieve a Certification. There are
many Certifications that each Firefighter is in the process of or has
acquired.

Firefighter Table: name, address, etc with a FirefighterID as the primary key
Classes Table: ClassID as primary key, Class Description; CertificationID
from Certificaton Table
Certification Table: CertificationID, Certification Name

That is where I get stuck. Here is what I ultimately want to know.

I want to know each class and completion date that a firefighter has taken
in each certification track. I want to know which class they still need in a
certification track. I want to know which classes would benefit the most
firefighters.

You need another table: Attendance let's call it. This would have fields for
FirefighterID, ClassID, DateTaken, and perhaps a comment field or a yes/no
"passed satisfactorily" field or any other fields you need to record this
person's interaction with this class.

YOu could then create queries joining these tables to see which certifications
each person has completed, or use the Unmatched Query wizard to see which they
haven't.

John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top