How can I place the current record info in one form into another f

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

Guest

I have a form with the current record I want. This form opens another form. I
would like for the form that is opened by the first form to have the current
record information in it.
 
M3cca,

If you are using a macro with the OpenForm action to open the second
form, you can use the Where Condition argument of the macro to specify
the record. It will be something like this..
[YourID]=[Forms]![FirstForm]![YourID]
 
Back
Top