CW said:
When creating a form with the wizard you can base it upon any number
of tables (and hence fields).
If at some later point you then find that you need to "add" another
table into the form, how is this done?
There are several ways, but you need to define what you are trying to do:
1. Add a details table, like OrderDetails to an Orders table. A one-to-many
relationship between tables.
To do this, you need to add a subform control and base the subform on a
second table.
2. A second table related to the first with a one-to-one relationship like
an OrderStatus table.
To do this, you need to write a query which includes the 2 tables, then
add the additional fields to textboxes on the form.
3. Values from a foreign key. You store the ProductID in the Orders table,
but you need to see exactly what that item description is.
To do this add and join the tables in a query, then add a textbox to the
form to display the description field.