Share via

Access Employee Certification Database

Anonymous
2022-08-24T12:57:59+00:00

I am needing to build a database to track employee license and certifications. Does anyone know of a template that could be modified to meet my need? I am needing to be able to keep track of each employee's CPR certification, and state license certifications and would like to be able to set it up to alert me when they are nearing the expiration date for each certification. Any help with this will be greatly appreciated.

Microsoft 365 and Office | Access | Other | Other

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

2 answers

Sort by: Most helpful
  1. ScottGem 68,810 Reputation points Volunteer Moderator
    2022-08-25T00:16:47+00:00

    This should be a fairly easy database. If the only requirement is to track the license and certs. it can be done with three tables.

    tblEmployees

    EmpID (PK Autonumber)

    Firstname

    LastName

    other info about employees tht you need to capture.

    tblCerts

    CertID (PK Autonumber)

    CertName

    ExpirationPeriod

    tblEmpCerts

    EmpCertID (PK autonumber)

    EmpID (FK)

    CertID (FK

    LastDateCertified

    You would use a form to enter the data and a query to caluclate the Expire date byt adding the EXpirationPeriod to the LastDateCertified.

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  2. Tom van Stiphout 40,201 Reputation points MVP Volunteer Moderator
    2022-08-24T14:53:39+00:00

    There are quite a few databases here.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments