View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Sheeloo[_3_] Sheeloo[_3_] is offline
external usenet poster
 
Posts: 1,805
Default How do I select(fast) parts of long doc?

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

"suncat" wrote:

thanks for any help, I need to separate the house number from the street name
in a sheet that has 10,000 lines.