» Splitting a Full Address into Three Separate Cells
CATEGORY - Excel Text Formulas
VERSION - All Microsoft Excel Versions
Separating the addresses shown in column A into three columns, one each for City, State, and Zip Code.
Solution:
Use the LEFT, MID, RIGHT, and FIND functions as shown in the following formulas:
To extract the City: =LEFT(A2,FIND(",",A2)-1)
To extract the State: =MID(A2,FIND(",",A2)+2,2)
To extract the Zip code: =RIGHT(A2,5)

Book Store:
Recommended Books:
- Microsoft Office Xp: Advanced Concepts and Techniques: Word 2002, Excel 2002, Access 2002, Powerpoint 2002
- Marketing Plan: A Handbook with Marketing Plan
- Financial Modeling - 2nd Edition
- Microsoft Excel VBA Programming for the Absolute Beginner
- The Sweet Potato Queens' Big-Ass Cookbook and Financial Planner
- The Laws of Money, The Lessons of Life: Keep What You Have and Create What You Deserve
gmoney10111
How do I use this?


Had to change "," for ;
=LEFT(A2;FIND(";";A2)-1)
I use Microsoft Excel 2003