If you want to use data from table2 instead of table1 in the same form
you might edit a "RowSource" property from "table1" to "table2" in a
properties of your form.
Change the Recordsource of the form from Table#1 to Table#2.
The need to do this strongly suggests that your tables are not properly
normalized. If you're storing several tables with the same structure, each
with different subsets of "the same" kind of data, consider instead using one
large table with an additional field to define the subsets. Then you can
simply filter the form, or base it on a parameter query selecting just one
subset.
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.