W
Wayne Wengert
The query below works fine in SQL Server 2000 but fails in Access 2003 - it
doesn't seem to accept the "DISTINCT"
How can this be accomplished in Access 2003?
==============================
SELECT ResidentList.Area, Count(DISTINCT ISNULL(ResidentList.Address2,''))
AS CountOfID
FROM ResidentList
GROUP BY ResidentList.Area
ORDER BY ResidentList.Area
doesn't seem to accept the "DISTINCT"
How can this be accomplished in Access 2003?
==============================
SELECT ResidentList.Area, Count(DISTINCT ISNULL(ResidentList.Address2,''))
AS CountOfID
FROM ResidentList
GROUP BY ResidentList.Area
ORDER BY ResidentList.Area