I have made a form using fields from table#1. I want to use fields of same
name from table#2. Easy way to do this?
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.
John W. Vinson [MVP]