I want to go to the subform, add a record then place data in a field (MissingID). First two lines are okay but I'm getting an error on the third line (data member not found). Am I referring to the field incorrectly?
Me.frmMissingItems_Subform.SetFocus
DoCmd.GoToRecord , , acNewRec
Me.frmMissingItems_Subform.MissingID = "abc"
Me.frmMissingItems_Subform.SetFocus
DoCmd.GoToRecord , , acNewRec
Me.frmMissingItems_Subform.MissingID = "abc"