MENU
Donate
=FUNCTIONS

FIND()

Text

Returns the position of one text string within another — case-sensitive.

FIND(find_text, within_text, [start_num])

FIND searches within_text for find_text and returns the character position where it first appears. Position 1 is the first character. The search is case-sensitive.

If find_text is not found, FIND returns #VALUE!. Wrap it in IFERROR to handle the not-found case: =IFERROR(FIND("@",A2),0).

For a case-insensitive search, use SEARCH instead. FIND and SEARCH are often used inside LEFT, MID, or RIGHT to extract text around a known separator.

Arguments

find_text
The text to search for.
within_text
The text to search inside.
start_numoptional
The character position to start the search from. Default is 1.

Examples

=FIND("@", A2)
6

The @ character is at position 6 in A2's email address.

=LEFT(A2, FIND(" ",A2)-1)
John

Extracts the first word from a full name by finding the space.

Tips / Tricks / Hacks

FIND tricks, tips, and workbook hacks

FIND is easier to remember when you learn the small patterns around it: where it fits, what can break it, and how to combine it with neighboring functions.

Use these practical notes as a working checklist before putting the formula into a real report, model, dashboard, tracker, or reusable template.

Quick wins before you trust the result

  • Start with the simplest FIND formula that answers the question, then add conditions or error handling only when needed.
  • Keep input ranges consistent in size, shape, and meaning.
  • Test the formula on one row or one small sample before filling it down a large workbook.
  • Add a note beside important formulas explaining what business question they answer.
  • Pair the formula with related checks so mistakes are easier to spot.
FIND tricks and formula patterns
Trick or hackFormula patternBest useWatch out
Build the formula in layersFIND(find_text, within_text, [start_num])When the full formula feels hard to read or debug.Confirm each argument or nested function before combining everything.
Use structured references=FIND(Table1[Column])Excel Tables make formulas easier to read and expand automatically.Rename table columns carefully so formulas remain clear.
Protect against bad input=IFERROR(FIND(...),"Check input")Dashboards and shared templates where users need a readable message.Do not hide errors until you understand why they happen.
Document the expected resultAdd a note or nearby labelReusable workbooks, finance models, templates, and handoff files.A clever formula without context becomes expensive to maintain.
Common mistakes and how to fix them
MistakeWhat it looks likeFix
Using a wider range than intendedThe result changes unexpectedly after new rows or helper columns are added.Use Excel Tables or named ranges to make the intended input explicit.
Mixing text, numbers, dates, and blanksThe answer technically works but does not match the business meaning.Clean and validate the source column before applying the function.
Copying a formula with moving referencesThe first row works; later rows drift into the wrong range.Use absolute references, structured references, or named ranges where needed.
Decision table: when the formula is ready for real work
ScenarioUseAvoid
You need a quick answer from clean dataFIND with the smallest clear rangeOverbuilding the formula with unnecessary wrappers
The result will appear in a dashboardAdd checks, labels, and readable fallbacksLeaving raw errors or unexplained blanks for viewers
The workbook will grow over timeExcel Tables, named ranges, or structured referencesHard-coded ranges that miss new rows
The data comes from another systemClean inputs before summarizing or transformingAssuming pasted data has correct types and spacing

Practice drills

  1. Write FIND once with direct cell references and once with an Excel Table reference.
  2. Break the formula on purpose, then use the error message to identify which argument failed.
  3. Create a small before/after example that explains the formula to another learner.

Related functions