How to use the same form for multiple tables

J

jpc_midtown

I have a database which was the contact management templated database. I
made some modifications to the "contacts" table and the "contacts" form. Now
I want to import more data into a new table and use the original "contacts"
form and the subform that goes along with it to track phone calls.
 
K

Klatuu

The field names in the tables will have to be the same for all tables to make
this work easily.
In the Load event of the form:
Me.RecordSource = "SomeTableName"
 
Top