Challenge - 5 Problems
Borders and Colors Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the background color of cell A1 after applying this formula?
You use the formula
=IF(B1>100, "#FF0000", "#00FF00") in a conditional formatting rule for cell A1. If B1 contains 150, what background color will A1 show?Attempts:
2 left
💡 Hint
Think about the condition B1 > 100 and what color is assigned when true.
✗ Incorrect
Since B1 is 150, which is greater than 100, the formula returns "#FF0000" which is red. So the background color of A1 becomes red.
❓ Function Choice
intermediate2:00remaining
Which function can you use to set a cell's background color based on its value?
You want to automatically color cells green if their value is above 50 and red if 50 or below. Which Google Sheets feature or function should you use?
Attempts:
2 left
💡 Hint
Think about how colors are usually applied automatically in Google Sheets.
✗ Incorrect
Google Sheets does not have functions like COLOR() or SETCOLOR() to change cell colors. Instead, Conditional Formatting rules with formulas are used to set background colors based on cell values.
🎯 Scenario
advanced2:00remaining
You want to add a thick border only around the outside of a range A1:C3. How do you do this?
You select the range A1:C3. Which border option will add a thick border only around the outside edges of this range, not between the cells inside?
Attempts:
2 left
💡 Hint
Think about which border option affects only the outside edges of a selected range.
✗ Incorrect
The 'Outer borders' option adds borders only around the outside edges of the selected range. Choosing a thick line style applies that thickness to those outside edges only.
📊 Formula Result
advanced2:00remaining
What happens if you apply this conditional formatting formula to range A1:A5?
Conditional formatting formula:
=MOD(ROW(),2)=0 with background color set to light gray. What cells in A1:A5 will have the gray background?Attempts:
2 left
💡 Hint
Remember ROW() returns the row number. MOD(ROW(),2)=0 means even rows.
✗ Incorrect
The formula checks if the row number is even. Rows 2 and 4 are even, so cells A2 and A4 get the gray background.
❓ data_analysis
expert3:00remaining
You have a table with sales data in B2:E6. You want to highlight cells with sales above the average sales of their row. Which conditional formatting formula correctly applies this?
Given the range B2:E6, which formula should you use in conditional formatting to highlight cells in each row that are greater than the average of that row?
Attempts:
2 left
💡 Hint
Think about how to fix the row reference so it changes per row but columns stay fixed.
✗ Incorrect
Using $B2:$E2 fixes the columns B to E but allows the row number to change as the formatting applies down each row. This compares each cell to the average of its own row.