View Single Post
 
Old 11-10-2014, 10:21 PM
excelledsoftware excelledsoftware is offline Windows 7 64bit Office 2003
IT Specialist
 
Join Date: Jan 2012
Location: Utah
Posts: 455
excelledsoftware will become famous soon enough
Default

Assuming that all of your addresses have 5 digit zipcodes and 2 character states you can use a combination of mid, right, and len formulas to do this quite easily.

The following formulas start with addresses in cell A2
Code:
For the City: =MID(A2,1,LEN(A2)-9)
For the State: =MID(A2,LEN(A2)-7,2)
For the Zip: =RIGHT(A2,5)
Let me know if that works out.

Thanks
Reply With Quote