To your first query add a third column for Max of Rep#. Now your query resilts should be
Region MaxOfSales MaxOfRep#
A $15,000.00 0302
B $7,000.00 0004
Here is the code for the join query:
SELECT Query1.Region, Query1.[MaxOfRep#], Reps.Name, Reps.State, Query1.MaxOfSales
FROM Reps RIGHT JOIN...