A Select query for this would probably look something like the following.
SELECT Table1.Category, Table2.Start, Table2.End
FROM Table2 INNER JOIN Table1
ON Table2.Start <=Table1.End AND
Table2.End >= Table1.Start
If that gives you the desired results, then you should be able to use that
as the basis for the MakeTable query
SELECT Table1.Category, Table2.Start, Table2.End INTO MyNewTable
FROM Table2 INNER JOIN Table1
ON Table2.Start <=Table1.End AND
Table2.End >= Table1.Start

Signature
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
.
> Hello
>
[quoted text clipped - 12 lines]
> within table 1's start and end points then copy that record along with the
> category field to the new table.