0
0
Excelspreadsheet~20 mins

LEFT, RIGHT, MID extraction in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Text Extraction Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Extracting first 4 characters with LEFT
Given cell A1 contains the text "Spreadsheet2024", what is the result of the formula =LEFT(A1,4)?
A"Sheet"
B"Spre"
C"2024"
D"read"
Attempts:
2 left
💡 Hint
LEFT extracts characters starting from the beginning of the text.
📊 Formula Result
intermediate
1:30remaining
Extract last 3 characters with RIGHT
If cell B2 contains "Invoice12345", what does the formula =RIGHT(B2,3) return?
A"345"
B"123"
C"Inv"
D"ice"
Attempts:
2 left
💡 Hint
RIGHT extracts characters from the end of the text.
📊 Formula Result
advanced
2:00remaining
Extract middle characters with MID
Cell C3 contains "CustomerID2024". What is the result of =MID(C3,9,2)?
A"st"
B"er"
C"20"
D"ID"
Attempts:
2 left
💡 Hint
MID extracts characters starting at a position you choose.
🎯 Scenario
advanced
2: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)?
A=RIGHT(D1,3)
B=LEFT(D1,3)
C=MID(D1,2,3)
D=MID(D1,1,3)
Attempts:
2 left
💡 Hint
Area code starts after the first character which is an opening parenthesis.
Function Choice
expert
2: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?
A=LEFT(E1,FIND(" ",E1)-1)
B=MID(E1,1,FIND(" ",E1))
C=RIGHT(E1,FIND(" ",E1)-1)
D=MID(E1,FIND(" ",E1)+1,LEN(E1))
Attempts:
2 left
💡 Hint
Use FIND to locate the space and LEFT to get characters before it.