×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

acess help please!
3

acess help please!

acess help please!

(OP)
I want to make a table for Operators and One for Maintenance Men
Make it so that I can type in each person, what they're certified for and what shift they work.
I tried making a table for both, but I can't repeat any information (obviously) so If someone was certified in 4 or 5 different areas, I couldn't enter that in the table, Only one cert per person
is there another, easier way to do this, instead of making a table for each certification and then listing the people and their shifts?

RE: acess help please!

Can a person work more in more than one shift?

Do you understand normalization? If not, you might want to search the web to find some good information on creating good table structures. I don't expect I would create separate tables for Operators and Maintenance. Employee certifications should be stored in a junction table.

Duane
Hook'D on Access
MS Access MVP

RE: acess help please!

(OP)
Some employees do work more than one shift, just depending if they get called in to cover for someone who is out. I'm wanting to do something, so when the time stamp can tell which shift should be working, it only lists the people that are supposed to be on that shift, so no one can enter a work order request under someone else's name. Honestly, I just did a two week crash course on access, I'm really not great, nor do I understand all the aspects of it, but it just got thrown at me, so I'm rolling with the punches right now

RE: acess help please!

Those sound like three different entities to me. There is the temptation to try to jam them all into one table but try this structure

tblEmployee
EmployeeID          <-- Some unique identifier for the employee
EmployeeType        <-- Ideally linked to some table of types 
                        like 'Operator', 'Maintenance', etc.

tblEmplCertification
EmployeeID          <-- Link to the employee table
Certification       <-- Describes what certification they have
                        (should also be in a table of 'legal' certifications)
Other fields such as date certified, expires on, etc.
if those are required.

tblEmplShifts
EmployeeID          <-- Link to the employee table
Shift               <-- A shift number perhaps
                        (Provide details about the shifts in a Shift table.) 

With that structure you can easily report certifications for operators or shifts for maintenance people and you need to enter only relevant data.

RE: acess help please!

I suggest you review some information at Crystal Long's tutorials particularly 3. normalizing data.

You need to start with your table structures. Build something and post back here with your tables, fields, and relationships for some feedback. Don't worry about anything else until you get your tables correct.

Duane
Hook'D on Access
MS Access MVP

RE: acess help please!

I must agree with Duane. In my brief layout I omitted some of the jargon about primary keys, foreign keys, indexes, relationships, normal forms and the like. You do need to know that stuff though and the reference Duane gave you is an excellent place to start.

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close