Hi,
Try clicking Insert, Query and choose Design View. Once in design view choose Query, SQL Specific, Union. Then type something like this:-
SELECT Table1.*
UNION ALL
SELECT Table2.*
Does that do what you want? Obviously you'll need to substitute Table1 and Table2 with the names of your tables.