Duane,
Thanks for the response. I hope this makes sense...
I originally started there, but then got confused trying to create the lookup for the other table. I don't have much experience. I thought I needed an autonumber primary key since I need both the calendar year and pay period to create a unique field since we will have a 2008-01, 2009-01, etc., but now I don't know how to get the data into the table in a manner it makes sense. I don't want to pull the autonumber since it doesn't mean anything, but how do I get the year and the pay period into the other table?
I had created tbl_PayPeriods:
PayPeriodID, Autonumber, Primary Key
CalendarYear, Text (the calendar year)
PayPeriod, Text (a 2 digit number between 01 & 26)
PayPeriodBeginDate, Date (the date the pay period begins)
PayPeriodEndDate, Date (the date the pay period ends)
The second table, tbl_Overtime tracks type of overtime by pay periods:
OvertimeID, Autonumber, Primary Key
PayPeriodID, Number, Foreign Key (where I am trying to use the Calendar Year and Pay Period)
OT_SVrWx, Number, (how many hours of OT for severe weather)
OT_Sick, Number, (how may hours of OT for sickness)
Thanks,
Shelley