G Guilherme Moita Aug 20, 2003 #1 Does anyone know how can I count the number of tables that are currently in a Database? Thanks in advance.
Does anyone know how can I count the number of tables that are currently in a Database? Thanks in advance.
L losmac Aug 20, 2003 #3 Sub CountTables() MsgBox CurrentDb.TableDefs.Count End Sub This example return value: number of user tables + number of system tables System tables by deault are unvisible. To change it go to Tools->Options->View->System Objects
Sub CountTables() MsgBox CurrentDb.TableDefs.Count End Sub This example return value: number of user tables + number of system tables System tables by deault are unvisible. To change it go to Tools->Options->View->System Objects