S
Sue Compelling
Evening
I have a select query that extracts constituents who have a "status" of
closed and a "type" of coordinator.
I now want to only retrieve those records where there is more than one
Coordinator per Region. Is this possible?
My code is ...
SELECT ([firstname] & " " & [lastname]) AS CombName,
tblContacts.ContactStatus, tblContacts.ContactType, tblRegions.Region
FROM tblRegions INNER JOIN tblContacts ON tblRegions.RegionID =
tblContacts.RegionFK
WHERE (((tblContacts.ContactStatus)="closed") AND ((tblContacts.ContactType)
Like "*coordinator*"));
TIA
I have a select query that extracts constituents who have a "status" of
closed and a "type" of coordinator.
I now want to only retrieve those records where there is more than one
Coordinator per Region. Is this possible?
My code is ...
SELECT ([firstname] & " " & [lastname]) AS CombName,
tblContacts.ContactStatus, tblContacts.ContactType, tblRegions.Region
FROM tblRegions INNER JOIN tblContacts ON tblRegions.RegionID =
tblContacts.RegionFK
WHERE (((tblContacts.ContactStatus)="closed") AND ((tblContacts.ContactType)
Like "*coordinator*"));
TIA