Recall & Review
beginner
What does the FIND function do in Excel?
FIND locates the position of one text string inside another. It tells you where a specific word or letter starts in a cell. It is case-sensitive.
Click to reveal answer
beginner
How is SEARCH different from FIND in Excel?
SEARCH also finds the position of text inside another text but is not case-sensitive. It can find text regardless of uppercase or lowercase letters.
Click to reveal answer
beginner
What happens if FIND or SEARCH does not find the text?
Both FIND and SEARCH return 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 returns the starting position number of "cat" in the text inside A1, considering case.
Click to reveal answer
intermediate
Can FIND and SEARCH start looking from a position other than the first character? How?
Yes, both functions have an optional third argument to specify the starting position. For example, =FIND("a", A1, 3) starts looking from the 3rd character.
Click to reveal answer
Which function is case-sensitive when searching text in Excel?
✗ Incorrect
FIND is case-sensitive, meaning it distinguishes uppercase and lowercase letters. SEARCH is not case-sensitive.
What result do FIND and SEARCH return if the text is not found?
✗ Incorrect
Both FIND and SEARCH return a #VALUE! error if the text to find is not present.
Which formula finds the position of "dog" in cell B2 ignoring case?
✗ Incorrect
SEARCH ignores case, so it finds "dog" regardless of letter case.
How do you start searching from the 5th character in a text using FIND?
✗ Incorrect
The third argument in FIND is the starting position number.
If cell A1 contains "Hello World", what does =SEARCH("world", A1) return?
✗ Incorrect
SEARCH is not case-sensitive and finds "world" starting at position 7.
Explain the difference between FIND and SEARCH functions in Excel.
Think about how they treat uppercase and lowercase letters.
You got /3 concepts.
Describe a real-life example where you would use FIND or SEARCH in a spreadsheet.
Imagine you have a list of email addresses or product codes.
You got /3 concepts.