R
RAYCV
Hi, I am trying to extract and remerge data with an additional character
(comma). For example, I have the following list in a column with many
variables
Jones Bob Mr
Campbell Jock Mr & Mrs
Smith Bob Banking Trust
and want it to be displayed as
Jones, Bob Mr
Campbell, Jock Mr & Mrs
Smith, Bob / Banking Trust
I have used =LEFT(G9,FIND(" ",G9)-1) to find the text and then
=H9&","&RIGHT(G9,FIND(" ",G9)*1) to concatenate the text, but it doesn't
return all the data for the 3rd record?? What am I doing wrong
Thanks in advance
(comma). For example, I have the following list in a column with many
variables
Jones Bob Mr
Campbell Jock Mr & Mrs
Smith Bob Banking Trust
and want it to be displayed as
Jones, Bob Mr
Campbell, Jock Mr & Mrs
Smith, Bob / Banking Trust
I have used =LEFT(G9,FIND(" ",G9)-1) to find the text and then
=H9&","&RIGHT(G9,FIND(" ",G9)*1) to concatenate the text, but it doesn't
return all the data for the 3rd record?? What am I doing wrong
Thanks in advance