ReferenceFunctionsText Functions
FIND
FIND: Returns the 1-based position of one text string inside another.
Summary
FIND is case-sensitive and does not interpret wildcard characters.
Remarks
- Search is case-sensitive (
"A"and"a"are different). start_numis 1-based and must be greater than0.- If no match is found, returns
#VALUE!. - Errors in either argument are propagated.
Examples
Case-sensitive match
Grid
| Cell | Value | |
|---|---|---|
| No inputs on Sheet1. | ||
Formula
=
Result
Not evaluated yet.
Expected
7
Case mismatch fails
Grid
| Cell | Value | |
|---|---|---|
| No inputs on Sheet1. | ||
Formula
=
Result
Not evaluated yet.
Expected
#VALUE!
Related functions
FAQ
Do wildcard characters work in FIND?
No. FIND treats * and ? as literal characters and matches case-sensitively.
Runtime metadata
Category
Text
Signature
FIND(arg1, arg2, ... argN: Any)This function accepts a repeating argument pattern (min args: 2).
Arity
min 2, max variadic
Arguments
arg1Any · Scalar
Caps
PURE
Source