I may be going about this incorrectly but I thought I was doing the right thing. I have 2 tables with the same coulms. The data in each is identicle but each has columns will no data. So I want to combine the tables so that the missing data fills in. So I created a union query with a 'group by' expression. The union query works if I don't include the group expression. But the group expression returns an error that says, "You tried to execute a query that does not include the specific expression 'Issue' as part of an aggregate function. I'm not sure what I'm doing wrong. Here is my query:
Code:
SELECT SheetNumber, Issue, ProjectName, Discipline, Description, SheetSize, FileName FROM ProjectList UNION SELECT SheetNumber, Issue, ProjectName, Discipline, Description, SheetSize, FileName FROM PartialProjectList GROUP BY SheetNumber;
Comment