SELECT t.[Life Cycle] AS [Life Cycle], t.[Total vehicles] AS [Maximum Total Vehicles], t.[model range]
FROM QryLifeCycleModels t
WHERE (((t.[Total vehicles])=(select max(i.[Total vehicles]) from QryLifeCycleModels i where i.[model range] = t.[model range] )));
|