gemma-the-husky
05-22-2007, 07:17 AM
i'm trying to drop importerror tables with code, but this isn't working
i am not sure if its to do with unusual characters in the import errors tables ( error tables generated by access when importing spreadsheets etc
any ideas why the code fails
error 3295 - syntax error
'drop errors tables first
tdfdrop = 0
For Each tdf In CurrentDb.TableDefs
If InStr(1, tdf.Name, "ImportErrors") > 0 Then
tdfdrop = tdfdrop + 1
sqlstrg = "drop table " & tdf.Name
DoCmd.RunSQL sqlstrg
End If
Next tdf
If tdfdrop > 1 Then Call MsgBox("Dropped: " & tdfdrop & " importerror tables")
i am not sure if its to do with unusual characters in the import errors tables ( error tables generated by access when importing spreadsheets etc
any ideas why the code fails
error 3295 - syntax error
'drop errors tables first
tdfdrop = 0
For Each tdf In CurrentDb.TableDefs
If InStr(1, tdf.Name, "ImportErrors") > 0 Then
tdfdrop = tdfdrop + 1
sqlstrg = "drop table " & tdf.Name
DoCmd.RunSQL sqlstrg
End If
Next tdf
If tdfdrop > 1 Then Call MsgBox("Dropped: " & tdfdrop & " importerror tables")