show a value of a form,query or table in the other form

A

Amir_J

Please I want use or show a value of a field of a closed form (other form) on
the open or current form in a text box.
 
O

Ofer Cohen

You can't refer to a field in a closed form, instead refer to the field in
the table using DLookUp

=DlookUp("[Fieldname]","[TableName]")

Look at the help file for addition example on how to add a criteria, if
needed.
 
Top