Challenge - 5 Problems
Cross-Column Conditional Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
Conditional Formatting Formula Output
You apply this conditional formatting formula in cell C2:
Given A2=12 and B2=3, what is the formula result in C2?
=AND(A2>10, B2<5)Given A2=12 and B2=3, what is the formula result in C2?
Attempts:
2 left
💡 Hint
AND returns TRUE only if all conditions are true.
✗ Incorrect
Since A2 is 12 (greater than 10) and B2 is 3 (less than 5), both conditions are true, so AND returns TRUE.
❓ Function Choice
intermediate1:30remaining
Choose the Correct Formula for Cross-Column Check
You want to mark rows where the value in column A is greater than column B. Which formula should you use in column C?
Attempts:
2 left
💡 Hint
You want to check if A2 is greater than B2.
✗ Incorrect
Option A correctly uses IF to compare A2 and B2 and returns "Yes" if A2 is greater.
🎯 Scenario
advanced2:00remaining
Highlight Rows Where Sales Exceed Targets
You have sales data in column A and targets in column B. You want to highlight the entire row if sales exceed targets. Which conditional formatting custom formula should you use starting from row 2?
Attempts:
2 left
💡 Hint
Use absolute column references but relative row references.
✗ Incorrect
Option D uses absolute columns and relative rows, so it adjusts for each row but compares columns A and B correctly.
📊 Formula Result
advanced1:30remaining
Formula Result with Mixed References
In cell D2, you enter:
If A2=15 and B1=10, what is the result in D2?
=IF($A2>$B$1, "Pass", "Fail")If A2=15 and B1=10, what is the result in D2?
Attempts:
2 left
💡 Hint
Check the values and the comparison carefully.
✗ Incorrect
Since $A2 is 15 and $B$1 is 10, 15 > 10 is TRUE, so IF returns "Pass".
❓ data_analysis
expert2:30remaining
Count Rows Where One Column is Greater Than Another
You have data in columns A and B from rows 2 to 100. Which formula correctly counts how many rows have A>B?
Attempts:
2 left
💡 Hint
COUNTIF and COUNTIFS do not support array comparisons like this.
✗ Incorrect
SUMPRODUCT with a logical test coerced to numbers counts rows where A is greater than B correctly.