This sounds like a UNION query. A UNION query allows you to build a new recordset from multiple locations where there is no clear releationship between the tables but there is a need to select records from all the tables and display them as if coming from one. The main requirement is that each SELECT statement for each table must have the same number of columns and they must be named the same.
Follow these instructions exactly because building a UNION query is a little different.
I find the easiest way for beginners is to make a simple query from one of the tables and then use that SQL code to paste into a UNION query to start the process.
Build a query in design mode of any one of your tables. This would include the data you want in your columns as well as the selection criteria:
Select Field1, Field2, Field3, Status From tblYourTable1 WHERE tblYourTable1.STATUS = "PRELIMINARY"
Now copy your SQL from the SQL window and then delete all of the SQL from the window. This will start you off fresh in this query. Go back to the Design Window. From the Query menu select SQL Specific and then select UNION. This will set this query up as a UNION QUERY. The SQL window will be blank. Paste into it the SQL that you copied previously. Place your cursor at the end and press Enter/Return. Type in UNION and a space and another ENTER/RETURN. Now paste in the SQL again. This code you will have to modify to reflect the second table.
EXAMPLE::
Select Field1, Field2, Field3, Status From tblYourTable1 WHERE tblYourTable1.STATUS = "PRELIMINARY"
UNION
Select Field1, Field2, Field3, Status From tblYourTable2 WHERE tblYourTable1.STATUS = "PRELIMINARY"
UNION
Select Field1, Field2, Field3, Status From tblYourTable3 WHERE tblYourTable1.STATUS = "PRELIMINARY"
UNION . . .
do this through all 12 tables. Save the query. This query will reformat your tables data into one table with data mixed. You can have one of the fields be the name of the table where the data is from. Just name the field Table: "tblYourTable1" Each SELECT would have to have a column like this with their specific table identified.
Get back with me if you have some questions. Union queries are a little confusing but they are really powerful in just these situations. Bob Scriver