Picking Text from one cell

tycasey17

Board Regular
Joined
Sep 26, 2013
Messages
93
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
I am trying to pull information from one cell and put it into three other cells on a different sheet. I have a list of addresses and all of them are formatted as 123 America St, Bald Eagle, US 55555. My version of excel doesn't allow for =TEXTAFTER function and was wondering if there is another way to extract that information.
Sheet1
123 America St, Bald Eagle, US 55555
Sheet2
CityStateZip Code
Bald EagleUS55555
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Example if full address is in A1, and all addresses are formatted similarly... ending in a 2-character state abbreviation and 5-digit zip code.

B1:
Excel Formula:
=LEFT(MID(A1,FIND(",",A1)+2,LEN(A1)),FIND(",",MID(A1,FIND(",",A1)+2,LEN(A1)))-1)
C1:
Excel Formula:
=LEFT(RIGHT(A1,8),2)
D1:
Excel Formula:
=RIGHT(A1,5)
 
Upvote 0
Solution

Forum statistics

Threads
1,216,069
Messages
6,128,602
Members
449,460
Latest member
jgharbawi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top