Hi,
I have the results of a recordset which each result will be either a one or
two character string... (the first two chars from a postcode)

I also have (as a seperate include file) an array of all of these postcodes
and also the area (region) that they are in..

I need to loop through the recordset, matching the result to a particular
postcode and then match that to it's region and add 1 to the region count.

The end result being that I have a list (or string or array, whatever) or
regions and the number of postcodes found for each region.

Biascally I'm building a page which will tell the user their regional order
ratios...


So, When I'm looping through the recordset, I then perform a sub-loop,
matching the result with the postcodes from the include.

However, after this point I am stuck as to how to add to my count... in fact
I'm stuck on to create the count


I could of course do a series of If "POSTCODE" = "DE" then
NorthWestcount = NorthWestcount + 1
end if

but that seems a pretty bad method considering there are 124 possible
postcodes...

Any ideas?

James