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
 
Back
Top