Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How To Connect More Than One Table To A Form, Access 2007

Status
Not open for further replies.

David92595

IS-IT--Management
Jul 13, 2012
12
0
0
US
Hello,

Basics: I'm running a SQL server 2008 R2 back end with an Access 2007 Front end.

I need to find a way of opening up a form that is joined to more than one table in the backend. The users have to be able to enter information and update the corresponding tables with the new data in the form (Not a view only form).
For the more literal types, I need to connect our main table with a new table I just created. Our main table holds all of our ID #’s and other fields we need to display on the page, but we also need it to hold new fields for data entry to our new table as well.
The relationship between the old table and the new is a one-to one relationship.

As always, any help is greatly appreciated,

David92595
 
How do bound my form to more than one table using a SQL statement when I need to do an update?
Do you have any simple examples I can look at?

Thank you!
David92595
 
I'm not sure I understand what makes this complex. What happens if you change the form's record source to something like:
SQL:
SELECT A.*, B.* FROM [ExistingTable] A JOIN [NewTable] B on A.PrimaryKeyField = B.PrimaryKeyField;
If you can't figure this out, please provide more significant information about your tables and fields.

Duane
Hook'D on Access
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top