SELECT Benchmark_LessThanr50Percent.* INTO test1
FROM Benchmark_LessThanr50Percent, [SELECT Benchmark_LessThanr50Percent.Manufacturer Name, Sum(Benchmark_LessThanr50Percent.Spend) AS SumOfSpend
FROM Benchmark_LessThanr50Percent
GROUP BY Benchmark_LessThanr50Percent.Manufacturer Name
HAVING (((Sum(Benchmark_LessThanr50Percent.Spend))>100))]. AS Benchmark1
WHERE (((Benchmark_LessThanr50Percent.Manufacturer Name)=[Benchmark1].[Manufacturer Name]));
|