Probably the simplest way is to try to open the table and trap the error that occurs (probably Object does not exist you can do tests to find out). You can then run code or print a message depending on why you are checking.
Sub listaccesstables()
Dim catdb As ADOX.Catalog
Dim tblList As ADOX.Table
Set catdb = New ADOX.Catalog
catdb.ActiveConnection = CurrentProject.Connection
For Each tblList In catdb.Tables
If tblList.Name = "Chip_Extract" Then
MsgBox tblList.Name
End If
Next
Set catdb = Nothing
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.