0
0
Excelspreadsheet~20 mins

Font styling (bold, italic, color) in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Font Styling Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the result of applying this font style formula?
You want to make the text in cell A1 bold and red using Excel conditional formatting formula. Which formula will correctly apply the red color and bold font when the value in A1 is greater than 100?
Excel
Use conditional formatting with formula: =A1>100
ASet font color to red and font style to bold in the conditional formatting rule
BSet font color to red only, font style bold is not possible with formulas
CUse formula =IF(A1>100, "bold and red", "normal") in conditional formatting
DSet font style to italic and color blue in conditional formatting
Attempts:
2 left
💡 Hint
Conditional formatting can change font style and color based on a formula.
Function Choice
intermediate
1:30remaining
Which Excel function can change font color directly in a cell?
You want to change the font color of text inside a cell using an Excel formula. Which function can do this?
AFONT.COLOR()
BTEXTCOLOR()
CNo Excel function can change font color directly in a cell formula
DCOLORFONT()
Attempts:
2 left
💡 Hint
Think about whether Excel formulas can change font appearance directly.
🎯 Scenario
advanced
2:30remaining
You want to highlight cells with italic blue font based on a condition
You want to apply italic font style and blue font color to cells in column B where the value is less than 50. How do you do this using Excel features?
AUse VBA macro only, conditional formatting cannot change font style
BUse a formula =IF(B1<50, "italic blue", "normal") in the cell
CManually select cells and change font style and color, no formula needed
DUse conditional formatting with formula =B1<50 and set font to italic and color blue
Attempts:
2 left
💡 Hint
Conditional formatting can change font style and color based on formulas.
📊 Formula Result
advanced
1:30remaining
What happens if you apply this conditional formatting formula?
You apply conditional formatting with formula =AND(A1>10, A1<20) and set font to bold and red color. What will be the font style and color of cell A1 if its value is 15?
AFont will be bold and red
BFont will be normal and black
CConditional formatting will cause an error
DFont will be italic and blue
Attempts:
2 left
💡 Hint
Check if the value 15 satisfies the formula condition.
data_analysis
expert
3:00remaining
Analyze font styling impact on readability in a large dataset
You have a large Excel sheet with thousands of rows. You want to highlight all negative numbers in column C with red italic font to improve readability. Which approach is best for performance and clarity?
AUse a VBA macro to loop through each cell and change font style and color
BApply conditional formatting with formula =C1<0 and set font color red and italic style
CManually format each negative cell in column C with red italic font
DAdd a new column with text "Negative" and filter instead of changing font style
Attempts:
2 left
💡 Hint
Think about automatic and efficient ways to format many cells.