I have a column that contains city, state and zip code.
CITY_STATE_ZIP
--------------------------------------------------
Monroe, IN 46711
South Bend, IN 46615
Alexandria, IN 46001
I wants the three words ‘CITY_STATE_ZIP’ to be split into different columns.
CITY STATE ZIP
---------- ---------- --------------------
Monroe IN 46711
South Bend IN 46615
Alexandria IN 46001
You can do it as follows, if you want to use VBA.