![]() |
Spliting a cell
Hi all,
I have a full name in cell A1. I want to put the first name in cell A2 and the Last name in cell A3. The names are present traditionally: Jim Smith. Can you help me out? Thanks |
Spliting a cell
You can try menu DataText to ColumnsDelimiter and select space to split
this to two columns. If you are looking for formulas try the below In B1 =TRIM(LEFT(A1,FIND(" ",A1)-1)) In C1 =TRIM(MID(A1,FIND(" ",A1)+1,LEN(A1))) If this post helps click Yes --------------- Jacob Skaria "Jim" wrote: Hi all, I have a full name in cell A1. I want to put the first name in cell A2 and the Last name in cell A3. The names are present traditionally: Jim Smith. Can you help me out? Thanks |
Spliting a cell
With error handling
In B1 =TRIM(LEFT(A1,FIND(" ",A1 & " ")-1)) In C1 =TRIM(MID(A1,FIND(" ",A1 & " ")+1,LEN(A1))) If this post helps click Yes --------------- Jacob Skaria "Jacob Skaria" wrote: You can try menu DataText to ColumnsDelimiter and select space to split this to two columns. If you are looking for formulas try the below In B1 =TRIM(LEFT(A1,FIND(" ",A1)-1)) In C1 =TRIM(MID(A1,FIND(" ",A1)+1,LEN(A1))) If this post helps click Yes --------------- Jacob Skaria "Jim" wrote: Hi all, I have a full name in cell A1. I want to put the first name in cell A2 and the Last name in cell A3. The names are present traditionally: Jim Smith. Can you help me out? Thanks |
All times are GMT +1. The time now is 03:55 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com