post script
Thought again of the SQL as I didn't explain much in the previous post.
If you want all the fields from both tables, then edit the SQL to something like
SELECT *
FROM path.workbook.first table
UNION ALL
SELECT *
FROM path.workbook.second table
Using this approach has the usual limitations of hard coded addresses in SQL. Suggest if this is a problem you create the SQL on the fly.
Running the pivot table wizard should let you select data from different sources, BTW, it is just that I tend to do this via SQL.
regards,
Fazza