FormulaCraft

FIND vs SEARCH: case sensitivity in Excel and Sheets

Excel & Google Sheets
=FIND("a",A2)

Verified example

Computed by a real spreadsheet engine on the sample data below.

TextPosition of 'a'
alpha1
Beta
gamma2
delta2
apple1

=FIND("a",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. 1Decide whether case matters: use FIND when the match must be exact (e.g., finding 'USD' not 'usd'), use SEARCH when case does not matter.
  2. 2Write =FIND(find_text, within_text, [start_num]) or =SEARCH(find_text, within_text, [start_num]).
  3. 3Both return a number — the character position where the substring starts. Wrap in IFERROR to handle cases where the text is not found.
  4. 4Use the result with MID, LEFT, or RIGHT to extract surrounding text: =MID(A2, FIND("@",A2)+1, 100).

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

What does FIND return if the text is not found?

Both FIND and SEARCH return a #VALUE! error when the search string is not found. Wrap in IFERROR to return a fallback instead.

Is SEARCH available in Google Sheets?

Yes, both FIND and SEARCH work identically in Google Sheets.

Formulas used

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

Last reviewed: