I have been working on this for most of the day and can not figure out how to union together the different files. I can reference them is seperately but then the rows do not update as more are added or taken away.
When I go through the wizard it allows me to select 1 file to open. Then I go to the SQL editor and try to add in the others but I get an error saying SQL entry can not be represented graphically and then could not add table.
This is what my code looks like:
SELECT `' RESL AHU-1 issues log$'`.Issue, `' RESL AHU-1 issues log$'`.`Issue Description`, `' RESL AHU-1 issues log$'`.`Date Identified`, `' RESL AHU-1 issues log$'`.Contr, `' RESL AHU-1 issues log$'`.`Action Taken`, `' RESL AHU-1 issues log$'`.`Issue Status_(Open / Closed)`, `' RESL AHU-1 issues log$'`.`Date Accept`
FROM `' RESL AHU-1 issues log$'` `' RESL AHU-1 issues log$'`
WHERE (`' RESL AHU-1 issues log$'`.`Issue Status_(Open / Closed)`='open')
UNION ALL
SELECT `List$`.Issue, `List$`.`Issue Description`, `List$`.`Date Identified`, `List$`.Contr, `List$`.`Action Taken`, `List$`.`Issue Status_(Open / Closed)`, `List$`.`Date Accept`
FROM `List$` `List$`
WHERE (`List$`.`Issue Status_(Open / Closed)`='open')