Hi, all
I'am trying to create a record on a form, make select on the combo box and then open another form with this code:
Private Sub Combobox_AfterUpdate()
If Me.Combobox = "Name1" Then
DoCmd.OpenForm "fm_Inspection", , , "[InspectionID]=" & Me.InspectionID
Exit Sub
End...