I have a check box in a form 1. When that check box is checked I have it open a form 2. I would like to fill in a few of the fields in form 2 from data in form 1 when the form opens.
Will I need a completely separate form for this or can i somehow write some vba so that when i open the form with this vba code i can specify for just that action to include default values from form 1:
DoCmd.OpenForm "f_RissForm", , , , acFormAdd
Form 1 has a car id in it. When i open form 2 it will create a new record in another table. I want to have it default to the current car id on display in form 1 when i open form 2.
Thanks