0
0
Google Sheetsspreadsheet~20 mins

LEFT, RIGHT, MID in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Substring Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Extracting a substring with LEFT function
Given cell A1 contains the text "Spreadsheet", what is the result of the formula =LEFT(A1, 5)?
A"Sheet"
B"Sprea"
C"aerpS"
D"Spread"
Attempts:
2 left
💡 Hint
LEFT extracts characters starting from the beginning of the text.
📊 Formula Result
intermediate
1:30remaining
Using RIGHT to get last characters
If cell B2 contains "DataAnalysis", what does =RIGHT(B2, 4) return?
A"sisy"
Bysis"
C"ysis"
D"ysis
Attempts:
2 left
💡 Hint
RIGHT extracts characters from the end of the text.
📊 Formula Result
advanced
2:00remaining
Extracting middle text with MID
Cell C3 contains "Information". What is the output of =MID(C3, 4, 5)?
A"tamro"
B"rmat"
C"tamr"
D"ormat"
Attempts:
2 left
💡 Hint
MID extracts characters starting at a position for a given length.
🎯 Scenario
advanced
2:00remaining
Combining LEFT and RIGHT to extract parts
You have a cell D4 with the text "Report2024Final". Which formula extracts the year "2024" from this text?
A=MID(D4, 7, 4)
B=RIGHT(D4, 4)
C=MID(D4, 8, 4)
D=LEFT(D4, 4)
Attempts:
2 left
💡 Hint
Count characters to find where the year starts.
Function Choice
expert
2:30remaining
Choosing the correct function for dynamic substring extraction
You want to extract the last 3 characters from a text in cell E5, but the text length varies. Which formula will always return the last 3 characters regardless of text length?
A=MID(E5, LEN(E5)-2, 3)
B=MID(E5, LEN(E5)-3, 3)
C=RIGHT(E5, 3)
D=LEFT(E5, 3)
Attempts:
2 left
💡 Hint
Remember that MID's start position is 1-based and you must adjust for length.