Hi,
I have this code for my SQL in creating this Union of two Queries:
Select EmployeeName, Day, TotalTime As Total, "TimeSheet" As Source
From qryTimeSheet
Where EmployeeName = "David Davia"
UNION
Select EmployeeName, Day, Total, "DailyActivity" As Source
From qryDailyActivity
Where...