what i would do is add a command button to add it to the subform, therefore i can be clear of the intent.
Private sub button_click()
If me.combo.listindex > -1 then
With me.subformname.form.recordset
.addnew
!fieldname= combo
.update
End with
End sub