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.
- AVERAGEIFReturns the average (arithmetic mean) of all the cells in a range that meet a given criteriaStatisticalGoogle Sheets
- CELLReturns information about the formatting, location, or contents of a cellThis function is not available in Excel for the web.InfoGoogle Sheets
- CSCReturns the cosecant of an angleMathGoogle Sheets
- FILTERFilters a range of data based on criteria you defineLookupGoogle Sheets
- FLOORRounds a number down, toward zeroCompatibilityGoogle Sheets
- FORECAST.LINEARReturns a future value based on existing valuesStatisticalGoogle Sheets