Challenge - 5 Problems
Font and Text Styling Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2: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, "@")Attempts:
2 left
💡 Hint
The TEXT function formats numbers or text according to the format string. "@" means text as is.
✗ Incorrect
The TEXT function with format "@" returns the text exactly as it is in the referenced cell without adding quotes or changing case.
❓ Function Choice
intermediate2: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?
Attempts:
2 left
💡 Hint
Think about whether formulas can change font style in Google Sheets.
✗ Incorrect
Google Sheets formulas cannot change font styles like bold or italic. These styles are applied using cell formatting options, not formulas.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
Think about automatic font color changes based on cell values.
✗ Incorrect
Conditional formatting allows automatic font color changes based on rules like 'less than 0'. Formulas cannot change font color directly.
📊 Formula Result
advanced2: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")Attempts:
2 left
💡 Hint
The format "00000" means show 5 digits, adding leading zeros if needed.
✗ Incorrect
The TEXT function formats the number 123 as a 5-digit number with leading zeros, so it outputs 00123.
❓ data_analysis
expert3: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?
Attempts:
2 left
💡 Hint
Think about whether formulas can detect font styles in Google Sheets.
✗ Incorrect
Google Sheets formulas cannot detect font styles like bold. This requires Apps Script or manual counting.