The FIND function in Google Sheets is a useful tool to determine the position at which a string is first found within a text. Whether you're searching for specific words, characters, or substrings, the FIND function simplifies the task. Explore our comprehensive guide to learn more about its syntax and usage.
Parameters
search_for: The string or character you want to search for.text_to_search: The text within which you want to perform the search.starting_at: [Optional] The position in the text where the search should start.
Step-by-Step Tutorial
-
Using
FINDto search for a word:- Example:
=FIND("apple", "I have an apple") - Result:
10
- Example:
-
Using
FINDto search for a character:- Example:
=FIND("e", "She sells seashells by the seashore") - Result:
7
- Example:
-
Using
FINDwith a starting position:- Example:
=FIND("e", "She sells seashells by the seashore", 8) - Result:
24
- Example:
Use Cases and Scenarios
- Text Analysis: Determine the position of specific words within a paragraph.
- Data Extraction: Find the position of a specific character within a URL.
- String Manipulation: Search for substrings to perform conditional operations.
Related Functions
SEARCH: Perform a case-insensitive search within text.