Iterating through tables

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

I am trying to iterate through tables using below code but the problem is it
ignores linked tables. How can I also include linked tables?

Many Thanks

Regards


Dim Tbl As TableDef

For Each Tbl In CurrentDb.TableDefs
If Tbl.Attributes = 0 Then 'Ignores System Tables
Call UpsizingCheck(Tbl.Name)
End If
Next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top