Hello,
Could anyone help me with a formula to break this string out into three columns:
String:Desired Output:aberdeen (south dakota, united states)
column a: aberdeen
column b: south dakota
column c: united states
thanks
Hello,
Could anyone help me with a formula to break this string out into three columns:
String:Desired Output:aberdeen (south dakota, united states)
column a: aberdeen
column b: south dakota
column c: united states
thanks
With
A1: your sample text: aberdeen (south dakota, united states)
These regular formulas parse the text into 3 columns
City
State![]()
A2: =TRIM(LEFT(A1,FIND("(",A1)-1))
Country![]()
B2: =TRIM(MID(LEFT(A1,FIND(",",A1)-1),FIND("(",A1)+1,LEN(A1)))
Is that something you can work with?![]()
C2: =TRIM(SUBSTITUTE(MID(A1,FIND(",",A1)+1,LEN(A1)),")",""))
Ron,
Yes that's great! Thanks
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks