Combo Box Help

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

Guest

Hello. I am trying to configure a combo box on a form which would populate a
list of values based on the previously completed field. Both fields on this
form exist in the same table. I have attempted to play around with SQL
statements but I don't believe this is the answer as it does not appear there
is anyway to refernece the form name in the SQL statement only tables or
queries. Anybody have any ideas how to get around this? Thank you.
 
in a SQL statement's criteria, you can refer to a control on a form using
the following syntax, as

Forms!MyFormName!MyControlName

hth
 
Back
Top