Challenge - 5 Problems
FIND and SEARCH Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
Find the position of a substring using FIND
What is the result of the formula
=FIND("cat", "concatenate") in Google Sheets?Google Sheets
=FIND("cat", "concatenate")
Attempts:
2 left
💡 Hint
Remember that FIND returns the position of the first character of the substring, counting from 1.
✗ Incorrect
The substring "cat" starts at the 4th character in "concatenate" (c-o-n-ca-t-e-n-a-t-e). FIND is case-sensitive and returns 4.
📊 Formula Result
intermediate1:30remaining
SEARCH function with case insensitivity
What is the output of
=SEARCH("Dog", "My dog is cute") in Google Sheets?Google Sheets
=SEARCH("Dog", "My dog is cute")
Attempts:
2 left
💡 Hint
SEARCH is not case-sensitive, so it finds "Dog" even if the text has "dog" in lowercase.
✗ Incorrect
SEARCH finds "Dog" starting at the 4th character in "My dog is cute" ignoring case.
❓ Function Choice
advanced2:00remaining
Choosing between FIND and SEARCH for case sensitivity
You want to find the position of "Apple" in the text "I like apple pie" but only if the case matches exactly. Which function should you use?
Attempts:
2 left
💡 Hint
FIND is case-sensitive, SEARCH is not.
✗ Incorrect
FIND("Apple", "I like apple pie") returns an error because "Apple" with uppercase A is not found exactly. SEARCH would find it ignoring case. Since you want exact case match, FIND is correct.
🎯 Scenario
advanced2:00remaining
Extracting text after a keyword using FIND
You have the text "Order ID: 12345" in cell A1. Which formula extracts the number after "Order ID: " correctly?
Attempts:
2 left
💡 Hint
Count the length of the keyword "Order ID: " including the space to find the start position of the number.
✗ Incorrect
The keyword "Order ID: " is 10 characters long. FIND returns the start position of the keyword, so adding 10 moves to the first character of the number. MID extracts from there to the end.
❓ data_analysis
expert3:00remaining
Counting occurrences of a substring using SEARCH
You want to count how many times the substring "cat" appears in cell A1 containing "catapult cat category scatter". Which approach is correct?
Attempts:
2 left
💡 Hint
Use SUBSTITUTE to remove the substring and compare lengths before and after to count occurrences.
✗ Incorrect
Option C converts text to lowercase, removes all "cat" substrings, and calculates how many times "cat" appeared by length difference divided by substring length. Other options either count cells or find only first occurrence.