I have an address list with the first column with the full name in it, but last name first. I want to swap the names around in the first column so I
can print out address labels, and I know there's an easy way to do if but I'm bugger if I can find or remember it.
Any advice gratefully received ...
Quickest way :-
1 insert blank column to the Right
2 highlight Column
3 menu data --> text to columns
4 select delimited data
5 take a tick out of tab and tick 'other' and enter a space in box
6 check this puts a line in the right Place
7 click finish
Should have data accross two columns mail merge as normal
quote:
Originally posted by Jasper
I have an address list with the first column with the full name in it, but last name first. I want to swap the names around in the first column so I can print out address labels, and I know there's an easy way to do if but I'm bugger if I can find or remember it.
Any advice gratefully received ...
Or the old fashioned way.
=CONCATENATE(RIGHT(A1,LEN(A1)-FIND(",",A1,1))," ",LEFT(A1, LEN(A1)-FIND(",", A1,1)))
Where A1 is the cell that the name is in.
Doh. Schoolboy error.. Fixed :-)
=CONCATENATE(TRIM(RIGHT(A1,LEN(A1)-FIND(",",A1,1))), " ", LEFT(A1, FIND(",", A1,1)-1))
I hate excel
Cheers chaps