K
Keith
Access 2000
I have inherited a db where the entire address info is
stored in a memo field (street, suburb, city). :-(
I want to be able to count the number of clients in a list
of cities. I have figured out how to do a single city:
SELECT Count(declearer.Postal) AS CountOfPostal
FROM declearer
WHERE (((declearer.Postal) Like "*auckland*"));
but how would I go about a set of cities
TIA
I have inherited a db where the entire address info is
stored in a memo field (street, suburb, city). :-(
I want to be able to count the number of clients in a list
of cities. I have figured out how to do a single city:
SELECT Count(declearer.Postal) AS CountOfPostal
FROM declearer
WHERE (((declearer.Postal) Like "*auckland*"));
but how would I go about a set of cities
TIA