There is a way to find all tables with a specific column name, but this requires some code (as opposed to being able to simply execute a query).
First you need to make the system tables βvisibleβ in the database. You do not specify which version of MS Access is used, but the Option dialog should allow something along these lines .
This provides an MSysObjects table that contains all the user table names.
You probably want to iterate over all user tables, passing the names there into some code that opens the tables as DAO.TableDef objects and parses the attributes of the corresponding Fields collection.
Allen Browne has some VBA code that displays these attributes . You can customize this for your needs.
hardmath
source share