Count Tables

G

Guilherme Moita

Does anyone know how can I count the number of tables that
are currently in a Database?

Thanks in advance.
 
L

losmac

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
 

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

Top