pull data from seperate form

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

I currently have a form with its record source coming from
a query "qryInitialClass" is there I way I can have
specific fields in my form pull data from a seperate form
through the use of a textbox? For example I would like to
have a date field "DATE" pull data from a form
called "frmCoordinator".
 
Martin said:
I currently have a form with its record source coming from
a query "qryInitialClass" is there I way I can have
specific fields in my form pull data from a seperate form
through the use of a textbox? For example I would like to
have a date field "DATE" pull data from a form
called "frmCoordinator".

A ControlSource of...

=Forms!frmCoordinator!NameOfControl

....would do it (as long as frmCoordinator was opened).
 
Back
Top