Hello ....
I want to add a simple statement to the statement below to test if field [Recorded Call Report] = False
If [Recorded_Call_report ] = False, then skip the statment below and exit
If [Recorded_Call_report ] = True, The run the statement below.
================================================== =======
Private Sub Notes_Exit(Cancel As Integer)
On Error GoTo Err_Command4596_Click
DoCmd.SetWarnings False
If MsgBox("Rosie ask....Do you want me to keep this record as all ready recorded is Siebel?", vbYesNo, "") = vbYes Then
Me.Recorded_Call_report = True
End If
DoCmd.SetWarnings True
Exit_Command4596_Click:
Exit Sub
Err_Command4596_Click:
MsgBox Err.Description
Resume Exit_Command4596_Click
End Sub