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 with FIND
Given the text
"Hello World" in cell A1, what is the result of the formula =FIND("o", A1)?Excel
=FIND("o", A1)Attempts:
2 left
💡 Hint
Remember FIND counts characters starting at 1 and is case-sensitive.
✗ Incorrect
The first lowercase "o" in "Hello World" is the 5th character.
📊 Formula Result
intermediate1:30remaining
SEARCH function ignoring case
If cell A1 contains
"Excel Tips", what does =SEARCH("t", A1) return?Excel
=SEARCH("t", A1)Attempts:
2 left
💡 Hint
SEARCH is not case-sensitive, so it finds both uppercase and lowercase matches.
✗ Incorrect
The letter "t" (case-insensitive) first appears at position 7 in "Excel Tips".
❓ Function Choice
advanced2:00remaining
Choosing between FIND and SEARCH for case sensitivity
You want to find the position of "Data" in cell A1, but only if it matches the exact case. Which function should you use?
Attempts:
2 left
💡 Hint
One function is case-sensitive, the other is not.
✗ Incorrect
FIND is case-sensitive, so it only matches exact case.
🎯 Scenario
advanced2:00remaining
Handling errors when substring is not found
You use
=FIND("x", "apple"). What will happen and how can you avoid an error?Excel
=FIND("x", "apple")
Attempts:
2 left
💡 Hint
FIND returns an error if substring is missing.
✗ Incorrect
FIND returns a #VALUE! error if the substring is not found. Wrapping it with IFERROR can prevent errors.
❓ data_analysis
expert3:00remaining
Count how many times a letter appears using FIND or SEARCH
You want to count how many times the letter "a" appears in cell A1 containing "Banana". Which formula correctly counts all occurrences?
Attempts:
2 left
💡 Hint
Think about removing letters and comparing lengths.
✗ Incorrect
Option A counts all 'a' letters by comparing length before and after removing 'a'.
Option A only checks if 'a' exists, not count.
Option A is case-sensitive and misses uppercase 'A'.
Option A finds only first occurrence.