Hi everybody,
I have a sheet in excel with this:
| 2;De Vries-De Wit;Acaciastraat ;3;6444;CC;Brunssum;9756234512 |
I want to remove the ; and make colums off it, like this:
2 = number(colum), De Vries = familyname(column)
But how to do this in Excel?
Thank you
albert albertPosted Apr 11, 2014, 3:13 AM
Thank you for you answare.
But I will give you more detail. I have this:
And in the above row you see Knr;Knaam and in the oter rows you see: 1;De Vries..etc
Now it is 1 long string seperated by ; but I want to have it in Seperate columns so: Knr(column ), Knaam(column), .. etc.
Thank you.
Abhay ShankerPosted Apr 11, 2014, 2:56 AM
First Column=LEFT(A1,(FIND(";",A1,1)-1))
Second Column=MID(A1,FIND(";",A1)+2,256)