johnmerlino
Board Regular
- Joined
- Sep 21, 2010
- Messages
- 94
Hey all, this formula almost does the job:
=IF(FIND(" ",A1&" ")-LEN(A1)-1,LEFT(A1,FIND(" ",A1)+FIND(" ",TRIM(
MID(A1,FIND(" ",A1)+1,255))&" ")),LEFT(A1,FIND(" ",A1&" ",FIND(" ",A1&" ")+2)))
But as you can see in below example, when the last name contains a space (e.g. Martin Marie Anne Hernara), it clips away Anne Hernara, just leaving Martin Marie. I want it to return Martin Marie Anna and just clip out the Hernara at end.
<table border="0" cellpadding="0" cellspacing="0" width="521"><col style="width: 343pt;" width="457"> <col style="width: 48pt;" width="64"> <tbody><tr style="height: 15pt;" height="20"> <td style="height: 15pt; width: 343pt;" width="457" height="20">AVERNA ROBERT C </td> <td style="width: 48pt;" width="64">AVERNA ROBERT </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Corn Marlin</td> <td>Corn Marlin</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Lizand ROBERT H </td> <td>Lizand ROBERT </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">CATANESE OLGA M</td> <td>CATANESE OLGA </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">JIMENEZ HILDA M</td> <td>JIMENEZ HILDA </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Corn Marlin </td> <td>Corn Marlin </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Marie Anne Martin</td> <td>Hernara Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">White John M </td> <td>White John </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Marie Anne Martin</td> <td>Hernara Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Martin Marie Anne</td> <td>Hernara Martin</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara -Martin Marie Anne</td> <td>Hernara -Martin </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HernaraMartin Marie Anne</td> <td>HernaraMartin Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">MartinHernara Marie Anne</td> <td>MartinHernara Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Martin Marie Anne Hernara</td> <td>Martin Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">CORNWALL ANNA</td> <td>CORNWALL ANNA</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HernaraMartin Marie Anne</td> <td>HernaraMartin Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HernaraMartin Marie</td> <td>HernaraMartin Marie</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Cortes Ann</td> <td>Cortes Ann</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Smith Marie Anne</td> <td>Smith Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Sarah Ann Little Junior</td> <td>Sarah Ann </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Marie Anne</td> <td>Marie Anne</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HOSTRUP KNUD J </td> <td>HOSTRUP KNUD </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">TABAR RAFIK RAYES </td> <td>TABAR RAFIK </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">PRIMEAU</td> <td>PRIMEAU</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HELEN BAIN ED </td> <td>HELEN BAIN </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HELEN BAIN ED </td> <td>HELEN BAIN </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">PRIMEAU</td> <td>PRIMEAU</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">TABAR RAFIK RAYES </td> <td>TABAR RAFIK </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Martin Marie Anne</td> <td>Hernara Martin</td> </tr> </tbody></table>Thanks for response.
=IF(FIND(" ",A1&" ")-LEN(A1)-1,LEFT(A1,FIND(" ",A1)+FIND(" ",TRIM(
MID(A1,FIND(" ",A1)+1,255))&" ")),LEFT(A1,FIND(" ",A1&" ",FIND(" ",A1&" ")+2)))
But as you can see in below example, when the last name contains a space (e.g. Martin Marie Anne Hernara), it clips away Anne Hernara, just leaving Martin Marie. I want it to return Martin Marie Anna and just clip out the Hernara at end.
<table border="0" cellpadding="0" cellspacing="0" width="521"><col style="width: 343pt;" width="457"> <col style="width: 48pt;" width="64"> <tbody><tr style="height: 15pt;" height="20"> <td style="height: 15pt; width: 343pt;" width="457" height="20">AVERNA ROBERT C </td> <td style="width: 48pt;" width="64">AVERNA ROBERT </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Corn Marlin</td> <td>Corn Marlin</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Lizand ROBERT H </td> <td>Lizand ROBERT </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">CATANESE OLGA M</td> <td>CATANESE OLGA </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">JIMENEZ HILDA M</td> <td>JIMENEZ HILDA </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Corn Marlin </td> <td>Corn Marlin </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Marie Anne Martin</td> <td>Hernara Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">White John M </td> <td>White John </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Marie Anne Martin</td> <td>Hernara Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Martin Marie Anne</td> <td>Hernara Martin</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara -Martin Marie Anne</td> <td>Hernara -Martin </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HernaraMartin Marie Anne</td> <td>HernaraMartin Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">MartinHernara Marie Anne</td> <td>MartinHernara Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Martin Marie Anne Hernara</td> <td>Martin Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">CORNWALL ANNA</td> <td>CORNWALL ANNA</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HernaraMartin Marie Anne</td> <td>HernaraMartin Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HernaraMartin Marie</td> <td>HernaraMartin Marie</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Cortes Ann</td> <td>Cortes Ann</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Smith Marie Anne</td> <td>Smith Marie </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Sarah Ann Little Junior</td> <td>Sarah Ann </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Marie Anne</td> <td>Marie Anne</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HOSTRUP KNUD J </td> <td>HOSTRUP KNUD </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">TABAR RAFIK RAYES </td> <td>TABAR RAFIK </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">PRIMEAU</td> <td>PRIMEAU</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HELEN BAIN ED </td> <td>HELEN BAIN </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">HELEN BAIN ED </td> <td>HELEN BAIN </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">PRIMEAU</td> <td>PRIMEAU</td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">TABAR RAFIK RAYES </td> <td>TABAR RAFIK </td> </tr> <tr style="height: 15pt;" height="20"> <td style="height: 15pt;" height="20">Hernara Martin Marie Anne</td> <td>Hernara Martin</td> </tr> </tbody></table>Thanks for response.