Hi guys,
want to switch between several forms. To go to the specific record I use this code:
Private Sub GoConfirmation_Click()
Dim strwhere As String
strwhere = "[MBS Ref] = """ & Me.[MBS Ref] & """"
DoCmd.Close acForm, "Edit"
DoCmd.OpenForm "Confirmation", acNormal, "", strwhere...