Recall & Review
beginner
What does the FIND function do in Google Sheets?
FIND looks for a specific text inside another text and tells you the position where it starts. It is case-sensitive, so it treats uppercase and lowercase letters differently.
Click to reveal answer
beginner
How is SEARCH different from FIND in Google Sheets?
SEARCH also finds the position of text inside another text but is not case-sensitive. It means it treats uppercase and lowercase letters the same.
Click to reveal answer
beginner
What happens if FIND or SEARCH does not find the text?
Both FIND and SEARCH will give an error (#VALUE!) if the text you are looking for is not found in the cell.
Click to reveal answer
beginner
Write the formula to find the position of "cat" in cell A1 using FIND.
The formula is =FIND("cat", A1). It will return the starting position of "cat" in the text inside A1, considering case.
Click to reveal answer
beginner
Why would you use SEARCH instead of FIND?
Use SEARCH when you want to find text without worrying about uppercase or lowercase letters. For example, SEARCH("cat", A1) finds "Cat", "CAT", or "cat".
Click to reveal answer
Which function is case-sensitive when searching text in Google Sheets?
✗ Incorrect
FIND is case-sensitive, meaning it distinguishes between uppercase and lowercase letters.
What result do FIND and SEARCH return if the text is not found?
✗ Incorrect
Both functions return a #VALUE! error if the text is not found.
Which function would find "apple" in "Apple pie" regardless of case?
✗ Incorrect
SEARCH ignores case, so it finds "apple" in "Apple pie".
What does =FIND("dog", "My Dog") return?
✗ Incorrect
FIND is case-sensitive and "dog" (lowercase) is not found in "My Dog" (uppercase D), so it returns an error.
How do you specify where to start searching in FIND or SEARCH?
✗ Incorrect
Both FIND and SEARCH accept an optional third argument to set the starting position for the search.
Explain how FIND and SEARCH work and when to use each in Google Sheets.
Think about case sensitivity and error results.
You got /5 concepts.
Describe how to handle errors when using FIND or SEARCH in a formula.
Consider how to avoid showing errors to users.
You got /3 concepts.