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.
in a sheet that has 10,000 lines.
Select the columnSheeloo;214722 said: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