L
LisaB
What is the proper way to loop through each tables in the database to
retrieve the Table Names
I want the code to look something like this
-------------------------
Set TheDB = CurrentDb
For Each Table In TheDB
NameTableName = Table.Name
Set TheTable = TheDB.TableDefs(NameTableName)
Run some code here
Next Table
retrieve the Table Names
I want the code to look something like this
-------------------------
Set TheDB = CurrentDb
For Each Table In TheDB
NameTableName = Table.Name
Set TheTable = TheDB.TableDefs(NameTableName)
Run some code here
Next Table