Hey All,
I have the code below which parses through about 16000 rows with 3 columns. ID/COUNTY/STATE
It output in an adjacent column each ID then each county(s) they are associated with.
Output is ID in Column E and the in Column F, eash STATE.COUNTY seperated by commas..
example:
222 CA.SACRAMENTO, CA.LOS ANGELES, CA.SAN DIEGO
235 NY.SUFFOLK
242 AK.ANCHORAGE
etc..
But for some IDs they have multiple identical STATE.COUNTY data, and I cannot figure out how to retreive only DISTINCT(UNIQUE) STATE.COUNTY values.
example:
221 CA.LOS ANGELES, CA.LOS ANGELES, CA.LOS ANGELES, CA.LOS ANGELES
I would want only:
221 CA.LOS ANGELES
Hopefully that all makes sense..
Thanks in advance for any help!
Bookmarks