0
0
Google Sheetsspreadsheet~20 mins

Number formats (currency, percentage, date) in Google Sheets - 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 of a currency formatted cell?
Cell A1 contains the number 1234.567. The cell is formatted as currency with 2 decimal places and the dollar sign ($). What will the cell display?
A$1,234.57
B$1234.567
C1234.57
D1234.567
Attempts:
2 left
💡 Hint
Currency format rounds to 2 decimals and adds the currency symbol.
📊 Formula Result
intermediate
1:30remaining
How does percentage formatting affect a cell value?
Cell B2 contains the number 0.085. The cell is formatted as percentage with 1 decimal place. What is the displayed value?
A0.085%
B0.1%
C8.5%
D85%
Attempts:
2 left
💡 Hint
Percentage format multiplies the number by 100 and adds % sign.
Function Choice
advanced
2:00remaining
Which formula converts a date string to a date value in Google Sheets?
You have the text "2024-06-15" in cell C3. Which formula correctly converts it to a date value that Google Sheets recognizes?
A=VALUE("2024-06-15")
B=DATEVALUE(C3)
C=TO_PURE_NUMBER(C3)
D=TEXT(C3, "yyyy-mm-dd")
Attempts:
2 left
💡 Hint
DATEVALUE converts a date string to a date number.
🎯 Scenario
advanced
1:30remaining
You want to display 0.756 as a percentage with no decimals. Which number format should you apply?
Given the number 0.756 in a cell, you want it to show as "76%" (rounded, no decimals). What number format setting should you use?
APercentage with 0 decimal places
BCurrency with 0 decimal places
CNumber with 2 decimal places
DDate format MM/DD/YYYY
Attempts:
2 left
💡 Hint
Percentage format multiplies by 100 and shows % sign.
data_analysis
expert
2:00remaining
Analyzing date format display differences
You enter the date 6/7/2024 in cell D4. The cell is formatted as "MM/DD/YYYY". What will the cell display if you change the format to "DD-MMM-YY"?
A07-Jul-24
B06-Jul-24
C06-Jun-24
D07-Jun-24
Attempts:
2 left
💡 Hint
MM is month, DD is day, MMM is short month name, YY is two-digit year.