0
0
Excelspreadsheet~10 mins

Column transformations in Excel - Interactive Code Practice

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

Complete the formula to convert the text in cell A1 to uppercase.

Excel
=UPPER([1])
Drag options to blanks, or click blank then click option'
AA1
BB1
Ca1
D1A
Attempts:
3 left
💡 Hint
Common Mistakes
Using lowercase cell references like 'a1' which Excel recognizes properly.
Referencing the wrong cell like B1 or 1A.
2fill in blank
medium

Complete the formula to extract the first 5 characters from the text in cell B2.

Excel
=LEFT([1], 5)
Drag options to blanks, or click blank then click option'
AA2
BC2
CB2
DD2
Attempts:
3 left
💡 Hint
Common Mistakes
Referencing the wrong cell like A2 or C2.
Using lowercase cell references.
3fill in blank
hard

Fix the error in the formula to replace all spaces in cell C3 with underscores.

Excel
=SUBSTITUTE([1], " ", "_")
Drag options to blanks, or click blank then click option'
AC3
Bc3
C"C3"
DC4
Attempts:
3 left
💡 Hint
Common Mistakes
Putting the cell reference in quotes, which makes it a text string.
Using lowercase cell references which Excel recognizes properly.
4fill in blank
hard

Fill both blanks to create a formula that trims extra spaces from cell D4 and converts the result to proper case.

Excel
=PROPER([1]([2]))
Drag options to blanks, or click blank then click option'
ATRIM
BD4
CUPPER
DLOWER
Attempts:
3 left
💡 Hint
Common Mistakes
Using UPPER or LOWER instead of TRIM inside the formula.
Referencing the wrong cell.
5fill in blank
hard

Fill all three blanks to create a formula that concatenates the text in cells E1 and F1 with a space between them.

Excel
=CONCATENATE([1], [2], [3])
Drag options to blanks, or click blank then click option'
AE1
B" "
CF1
DE2
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting to put the space in quotes.
Referencing the wrong cells.
Using cell E2 instead of E1.