I can update either of the tables independently in Access. As for a union, I do have the two tables in a JOIN. Do not think I am using the UNION verb, unless Access is doing that behind my back.
When I display the SQL code is Access this is what is shown:
SELECT PageCount.*, Copiers.Description, Copiers.Assembly, Copiers.Customer, Copiers.CycleMonths, Copiers.PONumber, Copiers.eMailUser, Copiers.in__Service, Copiers.ContractCode, Copiers.InService
FROM Copiers RIGHT JOIN PageCount ON Copiers.Copier = PageCount.Copier
WHERE (((PageCount.Exported)="False") AND ((PageCount.Active)="False") AND ((PageCount.ExportDate)=#1/1/1980#));
So I do have a right join, but not a union, or am I reading this wrong?