0
0
Excelspreadsheet~10 mins

Number formats (currency, percentage, date) in Excel - Interactive Code Practice

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

Complete the code to format the number in cell A1 as currency in Excel.

Excel
Select cell A1 and apply the [1] format.
Drag options to blanks, or click blank then click option'
ADate
BPercentage
CCurrency
DText
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing Percentage or Date format instead of Currency.
Using Text format which does not format numbers.
2fill in blank
medium

Complete the formula to calculate 20% of the value in cell B2.

Excel
=B2 * [1]
Drag options to blanks, or click blank then click option'
A20
B200
C2
D0.2
Attempts:
3 left
💡 Hint
Common Mistakes
Using 20 instead of 0.2, which multiplies by 20 times.
Using 2 or 200 which are incorrect multipliers.
3fill in blank
hard

Fix the error in the formula to convert the text date in cell C3 to a proper date format.

Excel
=DATEVALUE([1])
Drag options to blanks, or click blank then click option'
AC3
B"C3"
CDATE(C3)
DTEXT(C3)
Attempts:
3 left
💡 Hint
Common Mistakes
Using "C3" which is a text string, not the cell value.
Using DATE or TEXT functions incorrectly here.
4fill in blank
hard

Fill in the blank to create a formula that formats the value in D4 as a percentage with one decimal place.

Excel
=TEXT(D4, [1])
Drag options to blanks, or click blank then click option'
A"%"
B"0.0%"
C"0.0"
D"%0.0"
Attempts:
3 left
💡 Hint
Common Mistakes
Using "0.0" formats as decimal, not percent.
Using invalid formats like "%" or "%0.0".
5fill in blank
hard

Complete the formula to format the date in cell E1 as 'MM/DD/YYYY'.

Excel
=TEXT(E1, [1])
Drag options to blanks, or click blank then click option'
A"mm/dd/yyyy"
B"m/d/yy"
C"yyyy-mm-dd"
D"dd/mm/yyyy"
Attempts:
3 left
💡 Hint
Common Mistakes
Using "dd/mm/yyyy" (day/month order).
Using ISO "yyyy-mm-dd".
Using short formats like "m/d/yy".