How do I select(fast) parts of long doc?

  • Thread starter Thread starter suncat
  • Start date Start date
S

suncat

thanks for any help, I need to separate the house number from the street name
in a sheet that has 10,000 lines.
 
Assuming your data is in Col A and house number and street names are
separated by a space then use this in B1
=LEFT(A1,FIND(" ",A1)-1) to get house no
and this in C1
=RIGHT(A1,LEN(A1)-FIND(" ",A1)) to get street name
and copy donw
 
Just use text to columns (Data , text to columns) click delimited tick the
space box

Job done
 
How many columns does the OP want the street name split into if it has
spaces in it?
I think I'd stick with Sheeloo's suggestion.
 

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