Quick way to emply tables from VBA ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the best way to empty several tables in VBA. I'm writing a conversion routine and need to do this when I do a rerun.
 
Supply your table names to this kind of routine:

Dim strTable As String
Dim db As DAO.Database

strTable = "[MyTable]"
dbEngine(0)(0).Execute "DELETE FROM " & strTable & ";", dbFailOnError

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.

David said:
What is the best way to empty several tables in VBA. I'm writing a
conversion routine and need to do this when I do a rerun.
 
Back
Top