You select cells A1 to C3 and apply a thick border around the entire range using the Borders tool. What will you see?
Think about how Excel applies borders to multiple cells at once.
When you apply a thick border to a range, Excel places the thick border only around the outside edges of the entire selection, not between individual cells.
You want to shade every other row in a table to make it easier to read. Which method is best?
Think about a way to automate shading based on row numbers.
Conditional Formatting with a formula like =ISEVEN(ROW()) automatically shades every even row, making the table easier to read without manual work.
You want to shade cells in column B that have values greater than 100. Which Conditional Formatting formula should you use?
Conditional Formatting formulas must return TRUE or FALSE directly.
The formula =B1>100 returns TRUE when the cell value is greater than 100, which triggers the shading. Using IF or SUM is unnecessary and may cause errors.
You open a spreadsheet where some cells have different border styles. Which border style indicates a cell is part of a header row?
Headers often have a distinct border style to separate them from data.
A double bottom border is commonly used to separate header rows from the rest of the table, making it visually distinct.
You merge cells A1 to C1, then apply a fill color and a border around the merged cell. What is the result?
Think about how Excel treats merged cells as a single cell.
When cells are merged, Excel treats them as one cell. Applying fill color and borders affects the entire merged area uniformly.