FormulaCraft

How to extract the first name from a full name in Excel and Google Sheets

Topic:Text manipulation
Excel & Google Sheets
=LEFT(A2, FIND(" ", A2) - 1)

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1FIND(" ", A2) returns the position of the first space.
  2. 2LEFT takes every character before that position.
  3. 3The result is the first name on its own.

Tips

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

What if some names have no space?

FIND errors when there is no space. Wrap the formula in IFERROR and return the whole cell as a fallback.

More on Text manipulation

See all →

Formulas used

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: