sharkchaser
Technical User
Doesn't work. Returns empty rows.
What am I missing?
Thanks . . . Rick
Code:
SELECT Max([HIGH Dollar Market].ListPrice) AS MaxOfListPrice, Avg([HIGH Dollar Market].ListPrice) AS AvgOfListPrice, Min([HIGH Dollar Market].ListPrice) AS MinOfListPrice, Count([HIGH Dollar Market].City) AS CountOfCity, Avg([HIGH Dollar Market].DaysOnMarketCumulative) AS AvgOfDaysOnMarketCumulative
FROM [HIGH Dollar Market]
GROUP BY [HIGH Dollar Market].City
HAVING (((Max([HIGH Dollar Market].ListPrice))>=5000000) AND ((Avg([HIGH Dollar Market].ListPrice))>=5000000) AND ((Min([HIGH Dollar Market].ListPrice))>=5000000) AND (([HIGH Dollar Market].City)="Corona Del Mar (CDM)"));
Thanks . . . Rick