Returns the position of a given character or text string in a given text string.
Syntax
find_text: The character or text string you want to find. E.g. "e"
to_search: The text in which you want to search for the given text string. "Eagle"
Remarks
It is case-insensitive i.e., "Apple" and "apple" are not treated the same.
Examples
|
Formula |
Result |
|
=SEARCH("S";B2) |
6 |
|
=SEARCH(A3;B3) |
1 |
|
=SEARCH(A4;B4) |
3 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
Similar Functions