Split a cell's text on a delimiter into multiple columns with TEXTSPLIT.
Copy this formula
=TEXTSPLIT(A2, " ")TEXTSPLIT (Excel 365) breaks text at each delimiter and spills the parts across columns. For older Excel, extract the first part with LEFT + FIND.
=TEXTSPLIT("John Smith", " ")→John | SmithSplits a full name into first and last across two cells.
First word (legacy)
=LEFT(A2, FIND(" ", A2)-1)Returns the text before the first space.
Use Data ▸ Text to Columns for a one-off split, or LEFT/MID/RIGHT with FIND for a formula in older Excel.
Need a formula for your own data?
Describe what you want in plain language and let ExcelGPT write, explain, and verify the formula — free to start, no plugin.