Many Tables - One Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to get a lot of fields from several tables onto one form. There
are also a couple of linking tables involved.

I'd appreciate any help or tricks. Sometimes the links work and sometimes
they don't and I'm not sure why.

What should I be looking for or doing?

I know this question is vague, but I'm new at this and not sure what I'm
doing wrong.
 
Try linking the table on common field(s) in a query. Have a look at the
design view of one of the queries in the Northwind sample database for an
example of how to do it.
 
I'm trying to get a lot of fields from several tables onto one form. There
are also a couple of linking tables involved.

I'd appreciate any help or tricks. Sometimes the links work and sometimes
they don't and I'm not sure why.

What should I be looking for or doing?

I know this question is vague, but I'm new at this and not sure what I'm
doing wrong.

If you have many similar tables, differing only in the tablename, then
THAT'S what you're doing wrong. Consider having one single larger
table with one additional field to distinguish what are now separate
tables. Data should be stored in tables - *not* in tablenames!

John W. Vinson[MVP]
 
I've been looking at Northwind and it makes some sence, but I can't find an
example with a linking table.

I've got a linking table that connects the multiple tblCabinet PNs and the
multiple tblParts PNs. I used the linking table to get one cabinet number
with the multiple tblParts PNs on a form. I have another table that holds
other tblPartDetails. What I need to do is have these other PartDetails show
the details for the tblParts PNs on the same form.

Is this possible?

I connected the Master and Child Link Fields to no avail.
 
The Order Details table resolves the many-to-many between the Orders and
Products details.

The Orders form uses the Orders Subform form as a subform to allow updates
to the tables.

--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)
 

Ask a Question

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.

Ask a Question

Back
Top