Reputation: 15404
I have a column with data like
12 Frankton Rd, Queenstown 9300, New Zealand
I want to delete the information before the first comma, so the above becomes:
Queenstown 9300, New Zealand
Of course if I use Find and Replace with *,
this deletes the city name as well, so I can't use it.
Would anyone know how to achieve this?
Edit: After trying =MID(B2,SEARCH(",",B2)+1,LEN(B2))
Upvotes: 0
Views: 33
Reputation: 1628
Assume that your address string is in cell A2
. Then use this formula:
=MID(A2,SEARCH(",",A2)+2,LEN(A2))
Upvotes: 1