pointing queries to a field on a form

J

John Spencer

You reference a control on a form by using the following syntax. The form
must be open for this to work.

[Forms]![Your Form Name]![Your Control Name]

Make sure you reference the Control's name and not the Field's name. They
can be the same, but they can also be different.
 
Top