0
0
Excelspreadsheet~20 mins

Number formats (currency, percentage, date) in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Number Format Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
What is the displayed value with currency format?
Cell A1 contains the number 1234.567. The cell is formatted as Currency with 2 decimal places and the dollar sign ($). What is the displayed value in A1?
A$1,234.57
B1234.57
C$1234.567
D1234.567
Attempts:
2 left
💡 Hint

Currency format rounds to 2 decimals and adds the currency symbol.

📊 Formula Result
intermediate
1:30remaining
What is the displayed value with percentage format?
Cell B2 contains the number 0.256. The cell is formatted as Percentage with 1 decimal place. What is the displayed value in B2?
A0.3%
B25.6%
C0.256%
D256%
Attempts:
2 left
💡 Hint

Percentage format multiplies the number by 100 and adds % sign.

📊 Formula Result
advanced
2:00remaining
What date is shown with custom date format?
Cell C3 contains the date value 44561 (Excel serial date number). The cell is formatted with the custom date format "dddd, mmmm dd, yyyy". What is the displayed value?
A06/12/2021
B12/06/2021
CMonday, December 06, 2021
DMonday, 12 06, 2021
Attempts:
2 left
💡 Hint

Excel date 44561 corresponds to December 6, 2021.

Function Choice
advanced
2:00remaining
Which formula converts a decimal to a percentage string with 2 decimals?
You want to convert the decimal number in cell D4 to a text string showing percentage with exactly 2 decimal places (e.g., 0.1234 → "12.34%"). Which formula will do this correctly?
A=TEXT(D4, "0.00%")
B=D4*100 & "%"
C=CONCATENATE(D4*100, "%")
D=ROUND(D4, 2) & "%"
Attempts:
2 left
💡 Hint

Use TEXT function with percentage format code.

🎯 Scenario
expert
2:30remaining
You have a list of prices in column A and want to show them as currency in column B with a formula. Which formula in B2 correctly converts the number in A2 to a currency string with $ and 2 decimals?
Given prices in A2:A10 as numbers, you want column B to show prices as text with dollar sign, commas, and 2 decimals (e.g., 1234.5 → "$1,234.50"). Which formula should you enter in B2 and copy down?
A=FIXED(A2, 2)
B="$" & ROUND(A2, 2)
C=CONCATENATE("$", A2)
D=TEXT(A2, "$#,##0.00")
Attempts:
2 left
💡 Hint

Use TEXT function with currency format code for proper commas and decimals.