Multiple instances of a form

ericgeil

Registered User.
Local time
Today, 20:39
Joined
Jun 6, 2000
Messages
14
I have a db that will create several instances of a form. I would like to refer to a field on a specific instance of the form for a query criteria. I have tried:

forms![frmEmpInfo(1)]![SSN]

This didn't work. Any ideas? Thanks in advance.

Eric
 
If I am correct that you want to display on a form a control's value on another open form, add brackets around the "form" as in :

=[forms]![frmEmpInfo(1)]![SSN]

HTH
 

Users who are viewing this thread

Back
Top Bottom