Access VBA loop through all Tables using DAO.TableDef

This Access VBA tutorial explains how to loop through all Tables using DAO.TableDef in Access.

You may also want to read:

Access VBA loop through Table records

Access VBA loop through all Tables

Let’s say we use a Macro to import 100 Tables and then we want to delete them all. It is time consuming for us to delete one by one and there is a high risk of manual error of deleting the wrong one. In this case we want to write a Macro to loop through all Tables to delete all Tables that meet certain criteria. Looping through Tables can be done with the help of DAO.TableDef, which is an objects that represents the stored definition of a base table or a linked table.

It is pretty standard to create the TableDef objects using the below lines of code. Just copy and paste every time you need to loop through Tables.

Public Sub delTbl()
   Dim db As DAO.Database
   Dim tdf As DAO.TableDef
   Set db = CurrentDb

   For Each tdf In db.TableDefs
          'write your actions to the table
   Next
End Sub

Note that there are systems Tables that are hidden by default, those Tables have prefix MSys. We definitely want to avoid looping through those Tables, because it will cause an error message if we try to manipulate them. In order not to loop the system Tables, add the lines of code in red as below.

 

Public Sub delTbl()
   Dim db As DAO.Database
   Dim tdf As DAO.TableDef
   Set db = CurrentDb

   For Each tdf In db.TableDefs
       If Not (tdf.Name Like "MSys*") Then
          'write your actions to the table
       End If
   Next
End Sub

Now you can write any action to perform on each Table. You may refer to my another post to demonstrate how to perform a Delete Tale Action.

 

One thought on “Access VBA loop through all Tables using DAO.TableDef

  1. Hello ! i would like to know how we can do with “Access VBA run Query or run Action Query ” and “Access VBA loop through all Tables using DAO.TableDef” together ?
    I have 100 tables where for each i have to execute two query .
    I have done the import et the delete script, but i don’t how to execute my query, one to extract only the value i need and one to add this value in a table. each day i’ve got 100 txt file to treat .
    Thanks a lot to read my message. Valérie of France

Leave a Reply

Your email address will not be published.