Works fine but when I update a table in error with duplicate data, I gat a warning with a yes no help on it I just want warning that to go away. I tried DoCmd warning and it bypasses the error and the first mesage box appears. I'm trying to limit user interaction (Microsoft Access was unable to append all data to the table).
Code:Private Sub Command0_Click() On Error GoTo Err_1234 DoCmd.RunSavedImportExport "Import-Successful" MsgBox "It's finished" Exit Sub Err_1234: MsgBox "you have done this before" End Sub