0
0
Google Sheetsspreadsheet~10 mins

IFS function in Google Sheets - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to return "Pass" if the score is 50 or more, otherwise "Fail".

Google Sheets
=IFS(A1 >= 50, [1], TRUE, "Fail")
Drag options to blanks, or click blank then click option'
A"Pass"
B"Fail"
CTRUE
D50
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting quotes around text like Pass
Using a number instead of text for the result
2fill in blank
medium

Complete the code to return "Excellent" if score is 90 or more, "Good" if 70 or more, otherwise "Needs Improvement".

Google Sheets
=IFS(A1 >= 90, "Excellent", A1 >= 70, [1], TRUE, "Needs Improvement")
Drag options to blanks, or click blank then click option'
A"Needs Improvement"
B"Good"
CTRUE
D70
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of conditions
Not using quotes for text results
3fill in blank
hard

Fix the error in the formula to return "Low" if value is less than 50, "Medium" if less than 80, else "High".

Google Sheets
=IFS(A1 < 50, "Low", A1 < 80, [1], TRUE, "High")
Drag options to blanks, or click blank then click option'
A"Medium"
BA1 < 80
C"Low"
D"High"
Attempts:
3 left
💡 Hint
Common Mistakes
Using a condition instead of a result
Repeating the same result for different conditions
4fill in blank
hard

Fill both blanks to create a formula that returns "Fail" if score is below 50, "Pass" if below 75, else "Excellent".

Google Sheets
=IFS(A1 < [1], "Fail", A1 < [2], "Pass", TRUE, "Excellent")
Drag options to blanks, or click blank then click option'
A50
B75
C80
D60
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping the two numbers
Using numbers outside the score range
5fill in blank
hard

Fill all three blanks to create a formula that returns "Poor" if score is below 40, "Average" if below 70, "Good" if below 90, else "Excellent".

Google Sheets
=IFS(A1 < [1], "Poor", A1 < [2], "Average", A1 < [3], "Good", TRUE, "Excellent")
Drag options to blanks, or click blank then click option'
A40
B70
C90
D80
Attempts:
3 left
💡 Hint
Common Mistakes
Using thresholds in wrong order
Repeating the same number for multiple blanks