I am trying to do a comparison between 2 different tables in Access. I need
to compare the difference between historical and forecasted values which are
stored in different tables. I managed to make a union between the 2 tables
but I need to know what data comes from what table and what the difference
is both in numbers and percent. This is the union query I have so far:
SELECT [Trend], [Amount]
FROM [FFF - History]
WHERE [Month]="MAY"
UNION SELECT [Trend], [Amount]
FROM [FFFb - Forcst]
WHERE [Month]="May"
All help is greatly appreciated!
Thanks!
to compare the difference between historical and forecasted values which are
stored in different tables. I managed to make a union between the 2 tables
but I need to know what data comes from what table and what the difference
is both in numbers and percent. This is the union query I have so far:
SELECT [Trend], [Amount]
FROM [FFF - History]
WHERE [Month]="MAY"
UNION SELECT [Trend], [Amount]
FROM [FFFb - Forcst]
WHERE [Month]="May"
All help is greatly appreciated!
Thanks!