how do I convert cell 'Street,#' to '# Street' these are addresse

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an extensive list of addresses -- provided format is 'streetname,###'
(notice comma), I need addresses in format '### streetname' (notice space).
An example would be 'Washington,1909' and desired outcome would be '1909
Washington' I'd appreciate any suggestions for conversion script.

Thanx RL
 
First you create an empty column to the right of your text. Then Data, Text
To Columns and follow delimited with coma.
This will split your words from your numbers. At this time you now have two
columns. Then in an ALL new 3rd column to the right you CONCATENATE both
columns.
HTH

Gilles
"Closing hyperlinked wookbooks upon exit"
 
I have an extensive list of addresses -- provided format is 'streetname,###'
(notice comma), I need addresses in format '### streetname' (notice space).
An example would be 'Washington,1909' and desired outcome would be '1909
Washington' I'd appreciate any suggestions for conversion script.

Thanx RL


=RIGHT(A1,LEN(A1)-FIND(",",A1))&" "&LEFT(A1,FIND(",",A1)-1)


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top