How to prevent against this VBA issue?
The examples below is my code customers clicking a button: Individual Sub Command35_Click() Upon Error GoTo Err_Command35_Click DoCmd.SetWarnings True DoCmd.DoMenuItem acFormBar, acEditMenu, EIGHT,, acMenuVer70 DoCmd.DoMenuItem acFormBar, acEditMenu, SIX,, acMenuVer70 Exit_Command35_Click: DoCmd.RunCommand acCmdRecordsGoToPrevious Quit Sub Err_Command35_Click: MsgBox Make a mistake.Description Continue Exit_Command35_Click End Sub This is basically whenever they create an …