Formula Left and Right
| A | B | C |
2 | Ameen Akbar | Ameen | Akbar |
Spreadsheet Formulas |
Cell | Formula |
B2 | =LEFT(A2,FIND(" ",A2)-1) |
C2 | =RIGHT(A2,LEN(A2)-FIND(" ",A2)) |
|
another formula
B2: =LEFT(A2,FIND(" ",A2,1)-1) and this one in C2: =RIGHT(A2,LEN(A2)-FIND(" ",A2,1)).
No comments:
Post a Comment