help with Expression Builder

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

Guest

What is the syntax (for a text box) for the Expression Builder for accessing
column A in table 1 on a form whose Record Source is coming from table B?
 
What is the syntax (for a text box) for the Expression Builder for accessing
column A in table 1 on a form whose Record Source is coming from table B?

Probably a call to the DLookup function:

=DLookUp("[A]", "[Table 1]", "<optional criteria>")

but it would help a lot to know what you're trying to accomplish!

John W. Vinson[MVP]
 
Back
Top