BASIC QUESTION

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

Guest

Is it possible to create a form that draws data from more than one table? Is
so does it have to use a query?
 
Is it possible to create a form that draws data from more than one table?
Yes.

Is so does it have to use a query?

Yes; either a query or (more commonly) a main form for one table and a subform
for the other.

For a more detailed answer please post a more detailed question!

John W. Vinson [MVP]
 
Is it possible to create a form that draws data from more than one table? Is
so does it have to use a query?

Yes you must use a query.
Note: Some queries are not updateable.
See Access help:
Query + Troubleshoot queries + Select Query + I can't update data
from a query + Data can't be updated

However, if you just need to DISPLAY (or use in a calculation) the
data stored in a different table field, you can use DLookUp(), i.e.
=DLookUp("[FieldName]","OtherTableName","Where Clause arguments")
Look up DLookUp as well as
"Restrict data to a subset of records" for help with the arguments
needed" in VBA help
 

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