0
0
Excelspreadsheet~20 mins

Formula-based rules in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Formula-based Rules Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the result of this conditional formatting formula?
You apply this formula-based rule to cell A1:

=AND(A1>10, ISNUMBER(A1))

If A1 contains the value 15, what will the formula return?
ATRUE
BFALSE
C#VALUE!
D0
Attempts:
2 left
💡 Hint
Think about what AND does when both conditions are true.
Function Choice
intermediate
2: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?
A=RIGHT(B1,4)="Sale"
B=LEFT(B1,4)="Sale"
C=SEARCH("Sale", B1)=1
D=ISNUMBER(FIND("Sale", B1))
Attempts:
2 left
💡 Hint
Check which function extracts the first characters of the text.
📊 Formula Result
advanced
2:00remaining
What is the output of this formula-based rule for cell C3?
Given the formula-based rule:

=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?
ATRUE
BFALSE
C#N/A error
D#VALUE! error
Attempts:
2 left
💡 Hint
Consider what ISERROR returns when a formula results in an error.
data_analysis
advanced
2:00remaining
How many cells will be highlighted by this formula-based rule?
You apply this formula-based rule to range D1:D10:

=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?
A6
B3
C5
D4
Attempts:
2 left
💡 Hint
Calculate the average first, then count how many numbers are greater than it.
🎯 Scenario
expert
3: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?
A=E1>TODAY()-7
B=AND(E1>TODAY()-7, E1<TODAY())
C=E1>=TODAY()-7
D=AND(E1>=TODAY()-7, E1<=TODAY())
Attempts:
2 left
💡 Hint
Remember to include both start and end dates in the range.