Sample Data
This data shows a list of full names in column A that we want to split into first and last names.
| Cell | Value |
|---|---|
| A1 | Full Name |
| A2 | John Doe |
| A3 | Jane Smith |
| A4 | Alice Johnson |
This data shows a list of full names in column A that we want to split into first and last names.
| Cell | Value |
|---|---|
| A1 | Full Name |
| A2 | John Doe |
| A3 | Jane Smith |
| A4 | Alice Johnson |
=SPLIT(A2, " ")A B C 1 | Full Name | | 2 | John Doe | John | Doe 3 | Jane Smith| | 4 | Alice Johnson| |
A B C 1 | Full Name | First | Last 2 | John Doe | John | Doe 3 | Jane Smith | Jane | Smith 4 | Alice Johnson| Alice | Johnson