Challenge - 5 Problems
Formula-based Rules Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the result of this conditional formatting formula?
You apply this formula-based rule to cell A1:
If A1 contains the value 15, what will the formula return?
=AND(A1>10, ISNUMBER(A1))If A1 contains the value 15, what will the formula return?
Attempts:
2 left
💡 Hint
Think about what AND does when both conditions are true.
✗ Incorrect
The formula checks if A1 is greater than 10 and is a number. Since 15 is a number and greater than 10, both conditions are true, so AND returns TRUE.
❓ Function Choice
intermediate2:00remaining
Which formula-based rule highlights cells with text starting with 'Sale'?
You want to create a formula-based rule that highlights cells in column B if the text starts with the word 'Sale'. Which formula should you use?
Attempts:
2 left
💡 Hint
Check which function extracts the first characters of the text.
✗ Incorrect
LEFT(B1,4) extracts the first 4 characters. If they equal "Sale", the formula returns TRUE and highlights the cell. SEARCH and FIND check for presence but not necessarily at the start.
📊 Formula Result
advanced2:00remaining
What is the output of this formula-based rule for cell C3?
Given the formula-based rule:
What will the formula return if C3 contains the formula
=OR(C3="", ISERROR(C3))What will the formula return if C3 contains the formula
=VLOOKUP(100, A1:B5, 2, FALSE) and the lookup value 100 is not found?Attempts:
2 left
💡 Hint
Consider what ISERROR returns when a formula results in an error.
✗ Incorrect
If VLOOKUP does not find 100, it returns #N/A error. ISERROR detects any error and returns TRUE. OR returns TRUE if either condition is TRUE, so the formula returns TRUE.
❓ data_analysis
advanced2:00remaining
How many cells will be highlighted by this formula-based rule?
You apply this formula-based rule to range D1:D10:
If the values in D1:D10 are:
5, 8, 12, 3, 15, 7, 10, 6, 9, 4
How many cells will be highlighted?
=AND(ISNUMBER(D1), D1>AVERAGE($D$1:$D$10))If the values in D1:D10 are:
5, 8, 12, 3, 15, 7, 10, 6, 9, 4
How many cells will be highlighted?
Attempts:
2 left
💡 Hint
Calculate the average first, then count how many numbers are greater than it.
✗ Incorrect
Average of values is (5+8+12+3+15+7+10+6+9+4)/10 = 7.9. Numbers greater than 7.9 are 8, 12, 15, 10, 9 (5 cells).
🎯 Scenario
expert3:00remaining
Which formula-based rule highlights cells with dates in the past 7 days?
You want to highlight cells in column E that contain dates within the last 7 days from today. Which formula-based rule will correctly do this?
Attempts:
2 left
💡 Hint
Remember to include both start and end dates in the range.
✗ Incorrect
Option D checks if the date is between today minus 7 days and today inclusive, correctly capturing the last 7 days. Other options miss the upper or lower bound or exclude today.