Excel
FIND function in Excel
Finds one text value within another (case-sensitive)
=FIND(find_text, within_text, [start_num])FIND syntax and parameters
Three arguments, two required.
- find_textstringRequired
- within_textstringRequired
- start_numnumberOptional
FIND examples
Formulas you'll actually reuse.
Where the @ sits in an email address (FIND is case-sensitive):
=FIND("@", A2)Result
12Extract the username — everything before the @:
=LEFT(A2, FIND("@", A2) - 1)Result
"maria.lopez"
FIND in Google Sheets
Same name — your formula ports as-is.
Try FIND in the playground
Edit the example — nothing to install.
Preloaded with the FIND formula from Example 1 — change anything and watch it respond.
Loading the editor…
FIND errors
What they mean — and the fixes.
#VALUE!The text wasn't found — FIND is case-sensitive and takes no wildcards; use SEARCH for a forgiving match.
Related functions
More ways Excel gets this done.
- ARRAYTOTEXTReturns an array of text values from any specified rangeTextNo Google Sheets equivalent
- CHARReturns the character specified by the code numberTextGoogle Sheets
- CLEANRemoves all nonprintable characters from textTextGoogle Sheets
- CODEReturns a numeric code for the first character in a text stringTextGoogle Sheets
- CONCATCombines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.TextGoogle Sheets
- CONCATENATEJoins several text items into one text itemTextGoogle Sheets