Extract the First Word from a Cell in Excel

BeginnerText Manipulation

I want to pull just the first name from a full name string.

The Formula

=LEFT(A1, SEARCH(" ", A1) - 1)

How It Works

1

SEARCH finds the position of the first space.

2

LEFT grabs all characters from the start up to that space.

💡 Pro Tips

  • • Test the formula with sample data before applying to your entire dataset
  • • Use absolute references ($A$1) when copying formulas to prevent reference errors
  • • Consider error handling with IFERROR() for more robust formulas
  • • Document your formulas with comments for future reference

Need a Custom Formula?

Can't find exactly what you need? Our AI can generate custom Excel formulas based on your specific requirements.

Try AI Generator

Formula Details

Difficulty:Beginner
Category:Text Manipulation
Steps:2