Subform - form sycronization

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

Guest

I should know how to do this, but I dont.

When I open my form the main field that everything links to is empy, but the
other field have data from the first record. How do I get it to open so that
all of the fields are blank and will update once the drop down box has a
record chosen? there is a subform and one record in the main form that need
to kept in sync with the drop down box.

Thanks
 
You can set the recordsource of the form to
"SELECT * FROM SomeTable WHERE False"
Then in the afterupdate of the combo set the recordsource to
"SELECT * FROM SomeTable WHERE Whatever = " & Me.NameOfCombo
 

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