If you have many tables that have the same structure, then you have a design problem. In Excel it makes sense, for instance, to have a sheet for businesses in Alberta, and a sheet for businesses in BC, and a sheet for businesses in Saskatchewan.
In Access, you would not put these groups of information in separate tables, which is what you may have done. In an Access table you would add a field called Province, and put all the businesses in a single table. Then if you wanted to only work with a subset of your data, you write a query, or filter the records returned from your table using criteria.
In a relational database system the boundary between tables exists in order to model how types of things are related to other types of things in one-to-many relationships (relational), like a Class might have many Students, or a Transaction may have many Posts, or an Account may have many Transactions. Tables can also be related to themselves so a Child may have many Children.
But if you have a table for Shipped orders and Pending orders and Back orders and Cancelled orders, you have a design problem. Merge all those orders into a single table, and introduce a Status field.
I think you probably have many tables that should be merged, and then handling them with the single for will be a snap.
hth