Since we don't know anything about the structure of the tables, how they are
related (if at all), nor how you would like them "joined" it's hard to say.
More info please? perhaps an example of what you have and what you want?
I presume this was a copy&paste error and that you want to combine the January
data and the February data to produce the six lines?
If so you need a choice of two options:
1. a UNION query. Open the SQL window and type
SELECT [table1].[Day], [table1].[Product], [table1].[Qty]
UNION ALL
SELECT [table2].[Day], [table2].[Product], [table2].[Qty]
ORDER BY [Day];
2. NORMALIZE YOUR DATA!
If you have a separate table for each month your database design IS WRONG.
That makes sense for a spreadsheet (one page per month) but not for a
relational database! Create a new master table, and use a UNION query like the
one above as the source of an append query to move all of the data into one
table.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.