Can someone please tell me why the following code is producing a "variable not defined" message on the word Cancel? Thank you for any help!
Code:
Dim Answer As Integer
Answer = MsgBox("Yes to Delete this Batch, No to Exit Without Deleting, or Cancel to Continue Editing?", vbYesNoCancel + vbQuestion _
+ vbDefaultButton3, "Delete Unprocessed Batch?")
If Answer = vbCancel Then
Cancel = True
Exit Sub
Else
If Answer = vbNo Then
DoCmd.Close acForm, "UnprocessedBatchDeleteForm", acSaveNo
Exit Sub
End If
End If