Returns the position of a text string (first occurrence) within another given text string.
Syntax
FIND(find_text; text_to_search; [start_position])
find_text: Text string whose position you want to obtain. E.g. "S"
text_to_search: Text to search for the first occurrence of specified text string. "Zoho Sheet"
start_position: Position from which the search starts. Defaults to 1 if omitted. E.g. 2
Examples
Formula | Result |
=FIND("S";"Zoho Sheet") | 6 |
=FIND(A3;B3) | 5 |
=FIND(A4;B4) | 3 |
Get a hands-on experience of the function in the embedded range below.
Possible Errors
Errors | Meaning |
#N/A! | |
#NAME! | The function name is incorrect or invalid. The given defined name (if any) is invalid. There is a typo in the defined name used in the function. Double quotes are missing for text values in the function. Colon missing in a cell range reference.
|
#VALUE! | The given argument's data type is incorrect or invalid. For example, the function =DATE(A1:A3) will return a #VALUE error when a text value is present in the range. The given text is not present in the searched text.
|
#REF! | |
Similar Functions