Challenge - 5 Problems
Text Extraction Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
Extracting first 4 characters with LEFT
Given cell A1 contains the text
"Spreadsheet2024", what is the result of the formula =LEFT(A1,4)?Attempts:
2 left
💡 Hint
LEFT extracts characters starting from the beginning of the text.
✗ Incorrect
The LEFT function takes the first 4 characters from the left side of the text in A1, which are "S", "p", "r", "e" forming "Spre".
📊 Formula Result
intermediate1:30remaining
Extract last 3 characters with RIGHT
If cell B2 contains
"Invoice12345", what does the formula =RIGHT(B2,3) return?Attempts:
2 left
💡 Hint
RIGHT extracts characters from the end of the text.
✗ Incorrect
RIGHT(B2,3) takes the last 3 characters from the text "Invoice12345", which are "3", "4", "5" making "345".
📊 Formula Result
advanced2:00remaining
Extract middle characters with MID
Cell C3 contains
"CustomerID2024". What is the result of =MID(C3,9,2)?Attempts:
2 left
💡 Hint
MID extracts characters starting at a position you choose.
✗ Incorrect
MID(C3,9,2) starts at the 9th character of "CustomerID2024" which is "I", and extracts 2 characters: "I" and "D".
🎯 Scenario
advanced2:00remaining
Extracting area code from phone number
You have phone numbers in column D in the format
(123) 456-7890. Which formula extracts the area code (the 3 digits inside the parentheses)?Attempts:
2 left
💡 Hint
Area code starts after the first character which is an opening parenthesis.
✗ Incorrect
The area code is inside parentheses, so starting at character 2 and taking 3 characters extracts the digits inside the parentheses.
❓ Function Choice
expert2:30remaining
Choosing the correct formula for variable length extraction
You want to extract the first word from a cell E1 that contains a full name like
"John Smith". The first word length varies. Which formula correctly extracts the first word?Attempts:
2 left
💡 Hint
Use FIND to locate the space and LEFT to get characters before it.
✗ Incorrect
FIND(" ",E1) finds the position of the space. LEFT extracts characters from the start up to one less than that position, giving the first word.