0
0
Google Sheetsspreadsheet~10 mins

LEFT, RIGHT, MID in Google Sheets - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to extract the first 3 characters from cell A1.

Google Sheets
=LEFT(A1, [1])
Drag options to blanks, or click blank then click option'
A2
B5
C4
D3
Attempts:
3 left
💡 Hint
Common Mistakes
Using a number larger than the text length causes no error but extracts extra characters.
Confusing LEFT with RIGHT or MID functions.
2fill in blank
medium

Complete the formula to extract the last 4 characters from cell B2.

Google Sheets
=RIGHT(B2, [1])
Drag options to blanks, or click blank then click option'
A3
B4
C5
D6
Attempts:
3 left
💡 Hint
Common Mistakes
Using LEFT instead of RIGHT.
Using a wrong number of characters.
3fill in blank
hard

Fix the error in the formula to extract 5 characters from the middle of cell C3 starting at position 2.

Google Sheets
=MID(C3, [1], 5)
Drag options to blanks, or click blank then click option'
A2
B1
C3
D5
Attempts:
3 left
💡 Hint
Common Mistakes
Using 1 instead of 2 for start position.
Confusing the order of arguments.
4fill in blank
hard

Fill both blanks to extract 4 characters from cell D4 starting at position 3.

Google Sheets
=MID(D4, [1], [2])
Drag options to blanks, or click blank then click option'
A3
B4
C5
D2
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping start position and number of characters.
Using wrong numbers for either blank.
5fill in blank
hard

Fill all three blanks to extract the first 2 characters from cell E5, then the last 3 characters from cell F5, and finally 4 characters from cell G5 starting at position 2.

Google Sheets
=LEFT(E5, [1]) & RIGHT(F5, [2]) & MID(G5, [3], 4)
Drag options to blanks, or click blank then click option'
A2
B3
D4
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up numbers for LEFT and RIGHT.
Using wrong start position for MID.