andrewm said:
I want to use bound combo boxes to retieve info ( emp, dept etc ) and save it into the roster table. ( to make it user friendly ) I see the links between the tables. I still do not know the next step. do I make a form related to a query with all the tables mentioned?
sorry for harping on the point. there still will be eventually
7 days
20 allocated areas
each having a emp and description x 2
thus 288 unique fields
I made a small database similar to orders form - retrieved information from tables and saved the combo information in a "central" table
what am I missing in the above
What you are missing is that Access is a relational database. You are thinking in terms of a flat table, like Excel.
When you want to store lots of essentially similar information, your design should lead you to storing these as individual records (rows in Excel terms) not fields.
So your table would look like this:
tblRoster
RosterID, PK autonumber
Day Text, holding day of week
AreaID Number, linking to ID in tblArea holding 20 allocated area info
EmpID Number, linking to ID tblEmployee having a emp and description
Here you have 5 fields and an unlimited number of entries.
You are confusing the form design with the table design. That's because in Excel, the form and the data are the same thing (usually). In Access, data lives in tables, queries retrieve and manipulate data, forms display data and reports print it out.