0
0
Excelspreadsheet~20 mins

Borders and shading in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Borders and Shading Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the effect of applying a thick border to a cell range?

You select cells A1 to C3 and apply a thick border around the entire range using the Borders tool. What will you see?

AA thick border appears only around the outer edge of the selected range.
BA thin border appears around the outer edge, and thick borders inside each cell.
CNo border appears because thick borders cannot be applied to multiple cells.
DA thick border appears around each individual cell inside the range.
Attempts:
2 left
💡 Hint

Think about how Excel applies borders to multiple cells at once.

🎯 Scenario
intermediate
2:00remaining
How to shade alternate rows for readability?

You want to shade every other row in a table to make it easier to read. Which method is best?

AUse Conditional Formatting with a formula like =ISEVEN(ROW()) to apply shading.
BManually select each alternate row and apply a fill color.
CApply a thick border to every other row.
DUse the Font Color tool to change text color on alternate rows.
Attempts:
2 left
💡 Hint

Think about a way to automate shading based on row numbers.

Function Choice
advanced
2:00remaining
Which formula helps to apply shading based on cell value?

You want to shade cells in column B that have values greater than 100. Which Conditional Formatting formula should you use?

A=SUM(B1)>100
B=IF(B1>100, TRUE, FALSE)
C=B1>100
D=B1>=100
Attempts:
2 left
💡 Hint

Conditional Formatting formulas must return TRUE or FALSE directly.

data_analysis
advanced
2:00remaining
Identifying border styles in a formatted table

You open a spreadsheet where some cells have different border styles. Which border style indicates a cell is part of a header row?

ACells with a dotted border on all sides.
BCells with a double bottom border.
CCells with no borders but shaded background.
DCells with a thin top border only.
Attempts:
2 left
💡 Hint

Headers often have a distinct border style to separate them from data.

🧠 Conceptual
expert
2:00remaining
What happens when you apply shading and borders to merged cells?

You merge cells A1 to C1, then apply a fill color and a border around the merged cell. What is the result?

ANeither fill color nor borders apply to merged cells.
BThe fill color applies only to the first cell, and borders appear around each original cell.
CBorders disappear but fill color applies to all merged cells.
DThe fill color and border apply to the entire merged cell as one unit.
Attempts:
2 left
💡 Hint

Think about how Excel treats merged cells as a single cell.