LEFTRIGHTMIDFINDText Extraction

Extract Text From String

Extract text from string in Excel and Google Sheets using LEFT, RIGHT, MID, and FIND. Learn to pull the first or last word, a middle substring, or text between two delimiters.

Introduction

Spreadsheets rarely store data exactly how you need it — names, codes, and IDs often arrive jammed into a single column. Excel and Google Sheets give you four core text functions to pull pieces out: LEFT grabs from the start, RIGHT from the end, MID from the middle, and FIND tells the others where to cut. This guide shows how to combine them for real-world extractions.

Prerequisites

  • Basic knowledge of cell references
  • Understanding that text positions are counted from 1 (the first character is position 1)

1Extract from the Start with LEFT

LEFT returns a set number of characters from the beginning of a string. Omit the count to get just the first character. It is ideal for fixed-width prefixes or for grabbing everything before the first space.

Example

=LEFT("Hello World", 5)
Result: Hello

Returns the first 5 characters. LEFT counts every character, including spaces, as one position.

To extract the first word dynamically, use =LEFT(A1, FIND(" ", A1)-1) so it stops at the first space.

2Extract from the End with RIGHT

RIGHT mirrors LEFT but counts from the end of the string, making it perfect for suffixes like file extensions, area codes at the tail, or the last name in a 'First Last' cell. Pair it with LEN and FIND to make the cut position dynamic.

Example

=RIGHT("Hello World", 5)
Result: World

Returns the last 5 characters. RIGHT counts back from the end of the string.

Extract everything after the first space with =RIGHT(A1, LEN(A1)-FIND(" ", A1)).

3Extract from the Middle with MID

MID returns a number of characters starting at a position you specify. Because positions are 1-based, MID is how you pull a substring once you know where it begins — often with FIND supplying that starting point.

Example

=MID("Hello World", 7, 5)
Result: World

Starts at position 7 (the 'W' in World) and returns 5 characters. If start + length runs past the end, MID returns whatever is available.

MID is 1-based: the first character is position 1, not 0.

4Locate the Cut Point with FIND

FIND returns the position of one string inside another and is case-sensitive. It does not extract anything by itself, but it hands LEFT, RIGHT, and MID the exact position to cut at. When text is missing, FIND throws #VALUE!, so wrap it in IFERROR for safe formulas.

Example

=FIND("-", "ABC-123")
Result: 4

The first hyphen appears at the 4th character. Use this number as the start position for MID or to size a LEFT/RIGHT extraction.

For case-insensitive searching, use SEARCH instead of FIND.

Avoid #VALUE! on missing text with =IFERROR(FIND("-", A1), 0).

5Combine Them: Text Between Two Delimiters

The real power shows up when you nest these functions. To pull the segment between the first and second dash of a code like 'US-12345-CA', use FIND twice to locate both delimiters and let MID return everything in between. This pattern works for SKUs, paths, and any repeated-separator data.

Example

=MID(A1, FIND("-",A1)+1, FIND("-",A1,FIND("-",A1)+1)-FIND("-",A1)-1)
Result: 12345 (when A1 = US-12345-CA)

The first FIND finds the opening dash; the nested FIND starting just after it finds the closing dash. MID starts one character past the opening dash and runs for the gap between the two dashes.

In Microsoft 365 you can simplify this with TEXTBEFORE and TEXTAFTER, but the MID+FIND pattern works in every version and in Google Sheets.

Functions Used

Related Guides

Summary

Extracting text from a string is a four-function toolkit: LEFT and RIGHT for the edges, MID for the middle, and FIND to locate the exact cut point. Once you can nest FIND inside MID, you can pull any segment between delimiters — the single most reusable text-extraction pattern in Excel and Google Sheets.

Next Steps

  • Use LEFT(A1, FIND(" ", A1)-1) to extract the first word of a name
  • Combine MID + FIND to split SKUs and codes at their delimiters
  • Compare LEFT/RIGHT/MID with TEXTBEFORE/TEXTAFTER if you are on Microsoft 365