0
0
Google Sheetsspreadsheet~20 mins

Font and text styling in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Font and Text Styling Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this formula with text styling?
In Google Sheets, you use the formula =TEXT(A1, "@") where cell A1 contains the text "Hello". What will be the output in the cell with this formula?
Google Sheets
=TEXT(A1, "@")
AHello
BHELLO (all uppercase)
CError: Invalid format
D"Hello" (including quotes)
Attempts:
2 left
💡 Hint
The TEXT function formats numbers or text according to the format string. "@" means text as is.
Function Choice
intermediate
2:00remaining
Which function changes text to bold in Google Sheets?
You want to make the text in a cell bold using a formula in Google Sheets. Which of these options will achieve that?
ANone of these; text styling like bold is done via cell formatting, not formulas
BUse the formula =TEXT(A1, "bold")
CUse the formula =ARRAYFORMULA(BOLD(A1))
DUse the formula =BOLD(A1)
Attempts:
2 left
💡 Hint
Think about whether formulas can change font style in Google Sheets.
🎯 Scenario
advanced
2:00remaining
You want to highlight cells with red font if the value is negative. How to do this?
You have numbers in column A. You want the font color to turn red automatically if the number is less than zero. Which method should you use?
AUse the formula =IF(A1<0, "red", "black") in another cell
BApply conditional formatting with the rule 'Format cells if less than 0' and set font color to red
CUse the formula =TEXT(A1, "red")
DChange the font color manually for each negative number
Attempts:
2 left
💡 Hint
Think about automatic font color changes based on cell values.
📊 Formula Result
advanced
2:00remaining
What does this formula output with mixed text and numbers?
Given cell A1 contains the number 123, what is the output of the formula =TEXT(A1, "00000")?
Google Sheets
=TEXT(A1, "00000")
A123
BError: Invalid format
C00123
D00000
Attempts:
2 left
💡 Hint
The format "00000" means show 5 digits, adding leading zeros if needed.
data_analysis
expert
3:00remaining
How many cells in range B1:B10 have bold font applied?
You have a range B1:B10 with some cells manually set to bold font and others normal. Using Google Sheets formulas only, how many cells are bold?
AUse =COUNTIF(B1:B10, "*")
BUse =SUMPRODUCT(--(GET.CELL(20, INDIRECT("B"&ROW(B1:B10)))=1)) with named range
CUse =COUNTIF(B1:B10, "bold")
DIt is not possible to count bold cells using formulas alone
Attempts:
2 left
💡 Hint
Think about whether formulas can detect font styles in Google Sheets.