FIND vs SEARCH

FIND and SEARCH both return the position of text within a string. FIND is case-sensitive and literal. SEARCH is case-insensitive and supports wildcards.

Side-by-Side Comparison

AspectFINDSEARCH
Case sensitivityCase-sensitiveCase-insensitive
WildcardsNot supportedSupports * and ?
Use caseExact text matchingFlexible text matching
Error if not found#VALUE!#VALUE!

When to Use Each

Use FIND

Use FIND when the case of the text matters and you need an exact match.

Use SEARCH

Use SEARCH when you want case-insensitive matching or need wildcard support.

Verdict

Use SEARCH for flexible matching and FIND for precise, case-sensitive searches.

Frequently Asked Questions

Can I make FIND case-insensitive?
No. Use SEARCH or convert both strings to the same case with UPPER/LOWER.
Can SEARCH use regular expressions?
Not in Excel. In Google Sheets, use REGEXMATCH for regex.