Auto Load Info & Auto Compute - version 2007

L

Lee Ann

Two questions:

I have a table where I am capturing an employee's name and their employee ID
number. A number of these employees will be entered numerous times. Is
there a way for their information to load automatically when I start typing
their last name?

Second:

In this same table, I have a field to capture the number of overtime hours
they incur, as well as their rate of pay. I want to have another field which
will automatically calculate and enter this amount.

I'm sure both of these questions have very simple fixes, however I don't
know if I'm trying to make them work in the wrong Access object or what.

Thanks in advance.
 
K

KARL DEWEY

I would use two tables with form/subform for employee/work hours.
Employee table like this --
EmpID - autonumber - primary key
FName -
LName -
Hire - DateTime
Wage - number - decimal
OT - number - decimal
Rmks - memo
InActive - Yes/No - default No

The work hours table to have EmpID and the other fields needed for data
entery. Do not include calculated fields as those belong in output queries,
forms, or reports.

Set one-to-many relationship between employee and work hours table with
Referential Integerity and Cascade Update selected.

Use EmpID as Master/Child link between form(employee)/subform(work hours).

For data entry you scroll to employee (query for employee have criteria so
InActive employees not show). Then in subform for work hours enter the
information (WorkDate, Hours, Type {default to Regular, pick OT as needed},
etc.) and the EmpID is automatically entered for you.
 
L

Lee Ann

Thank you for your response. There are just a couple things that look above
my level, but I'm hoping once I actually do it I can figure it out.
 

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

Similar Threads

Auto Fill in Continuous Form 1
Auto Fill 1
Access Access 2007 How to create a roster 0
Auto number in an existing table 4
Employee Time calculating and tracking 1
Auto fill 1
Adding Short Time? 1
Auto fill 6

Top