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 c...
Read More