0
0
Google Sheetsspreadsheet~5 mins

FIND and SEARCH in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AFIND
BSEARCH
CBOTH FIND and SEARCH
DNEITHER FIND nor SEARCH
What result do FIND and SEARCH return if the text is not found?
A0
BEmpty cell
C#VALUE! error
D-1
Which function would find "apple" in "Apple pie" regardless of case?
ASEARCH
BFIND
CBoth FIND and SEARCH
DNeither FIND nor SEARCH
What does =FIND("dog", "My Dog") return?
A1
B3
C4
D#VALUE! error
How do you specify where to start searching in FIND or SEARCH?
ABy changing the first argument
BBy adding a third number argument for start position
CBy using a different function
DYou cannot specify start position
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.