How do I parse street address with 4 parts #,Dir,Street,Type

C

CUserM

I WORK IN AN AREA WHERE ADDRESSES HAVE A DIRECTION AS WELL AS #, STREET NAME,
AND STREET TYPE. GIVEN THERE'S NO "MIDDLE", HOW DO I PARSE THE DIRECTION?
 
D

Dale Fye

Parsing addresses is a pain in the a$$.

Can you give us a couple of examples?

Generally, I use the Split function to parse the addresses into segments,
then review each segment for certain patterns to determine whether it is the
Street#, street name, street type, direction, apt/unit #.

If the address doesn't fit neatly into my predetermined structure, I
generally process them one by one. This is VERY time consuming, but if you
build a form and use keyboard shortcuts, you can parse each address
relatively quickly.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top