0
0
Google Sheetsspreadsheet~20 mins

IFS function in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
IFS Function Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Output of IFS with multiple conditions
Given the formula =IFS(A1 < 50, "Low", A1 < 80, "Medium", A1 < 100, "High") and the value in cell A1 is 75, what will be the output?
A"Low"
B"High"
C"Medium"
DError
Attempts:
2 left
💡 Hint
Think about which condition is true first when checking from top to bottom.
Function Choice
intermediate
2:00remaining
Choosing the correct IFS formula for grading
You want to assign grades based on scores in cell B2: 90 and above is "A", 80 to 89 is "B", 70 to 79 is "C", below 70 is "F". Which IFS formula correctly implements this?
A=IFS(B2 > 90, "A", B2 >= 80, "B", B2 >= 70, "C", B2 <= 70, "F")
B=IFS(B2 > 90, "A", B2 > 80, "B", B2 > 70, "C", B2 <= 70, "F")
C=IFS(B2 >= 90, "A", B2 > 80, "B", B2 > 70, "C", B2 < 70, "F")
D=IFS(B2 >= 90, "A", B2 >= 80, "B", B2 >= 70, "C", B2 < 70, "F")
Attempts:
2 left
💡 Hint
Remember to use >= for the lower bound of each grade range and order conditions from highest to lowest.
data_analysis
advanced
2:00remaining
Analyzing IFS formula with overlapping conditions
Consider the formula =IFS(C1 >= 100, "Excellent", C1 >= 80, "Good", C1 >= 80, "Average", TRUE, "Poor"). What will be the output if C1 is 85?
A"Average"
B"Good"
C"Poor"
DError
Attempts:
2 left
💡 Hint
Check the order of conditions and which one matches first.
🎯 Scenario
advanced
2:00remaining
Using IFS to categorize sales performance
You have monthly sales in cell D5. You want to categorize sales as "Low" if less than 500, "Moderate" if between 500 and 999, "High" if between 1000 and 1499, and "Very High" if 1500 or more. Which formula correctly categorizes the sales?
A=IFS(D5 < 500, "Low", D5 < 1000, "Moderate", D5 < 1500, "High", D5 >= 1500, "Very High")
B=IFS(D5 <= 499, "Low", D5 >= 500, "Moderate", D5 >= 1000, "High", D5 >= 1500, "Very High")
C=IFS(D5 < 500, "Low", D5 >= 500, "Moderate", D5 >= 1000, "High", D5 >= 1500, "Very High")
D=IFS(D5 <= 500, "Low", D5 <= 999, "Moderate", D5 <= 1499, "High", D5 > 1500, "Very High")
Attempts:
2 left
💡 Hint
Order conditions from smallest to largest and use less than for upper bounds.
📊 Formula Result
expert
2:00remaining
Result of IFS with logical TRUE as last condition
What is the output of the formula =IFS(E1 < 0, "Negative", E1 = 0, "Zero", TRUE, "Positive") when E1 contains the value -5?
A"Negative"
B"Zero"
C"Positive"
DError
Attempts:
2 left
💡 Hint
Check which condition matches first for the value -5.