Is there a way to run a script to delete all import error tables? There has a been a couple mention of this topic in this forum but I haven't been able to get the code to work for me. Any help would be appreciated. thx
Private Sub DeleteTable()
Dim tblTable As TableDef
For Each tblTable In CurrentDb.TableDefs
If tblTable.Name Like "Import*" Then
DoCmd.DeleteObject acTable, tblTable.Name
End If
Next
End Sub