0
0
Excelspreadsheet~20 mins

FIND and SEARCH in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
FIND and SEARCH Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1: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)
A7
B5
C4
D8
Attempts:
2 left
💡 Hint
Remember FIND counts characters starting at 1 and is case-sensitive.
📊 Formula Result
intermediate
1:30remaining
SEARCH function ignoring case
If cell A1 contains "Excel Tips", what does =SEARCH("t", A1) return?
Excel
=SEARCH("t", A1)
A#VALUE!
B6
C8
D7
Attempts:
2 left
💡 Hint
SEARCH is not case-sensitive, so it finds both uppercase and lowercase matches.
Function Choice
advanced
2: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?
ASEARCH("data", A1)
BSEARCH("Data", A1)
CFIND("Data", A1)
DFIND("data", A1)
Attempts:
2 left
💡 Hint
One function is case-sensitive, the other is not.
🎯 Scenario
advanced
2: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")
AReturns #VALUE! error; use IFERROR to handle it
BReturns empty string; no error
CReturns FALSE; use ISERROR to check
DReturns 0; no error
Attempts:
2 left
💡 Hint
FIND returns an error if substring is missing.
data_analysis
expert
3: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?
A=LEN(A1)-LEN(SUBSTITUTE(LOWER(A1), "a", ""))
B=COUNTIF(A1, "*a*")
C=FIND("a", A1)
D=SUMPRODUCT(--(MID(A1, ROW(INDIRECT("1:"&LEN(A1))), 1)="a"))
Attempts:
2 left
💡 Hint
Think about removing letters and comparing lengths.