0
0
Google Sheetsspreadsheet~5 mins

IFS function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the IFS function do in Google Sheets?
The IFS function checks multiple conditions one by one and returns a value for the first true condition. It helps avoid nested IF statements.
Click to reveal answer
beginner
Write the basic syntax of the IFS function.
IFS(condition1, value_if_true1, condition2, value_if_true2, ..., conditionN, value_if_trueN)<br><br>Each condition is checked in order. The function returns the value for the first condition that is true.
Click to reveal answer
intermediate
How does IFS differ from nested IF statements?
IFS is simpler and cleaner because it lists conditions and results in pairs without many parentheses. Nested IFs can be confusing with many layers.
Click to reveal answer
intermediate
What happens if none of the IFS conditions are true?
If no condition is true, IFS returns an #N/A error. To avoid this, add a final condition that is always TRUE with a default value.
Click to reveal answer
beginner
Example: How to use IFS to assign grades based on scores?<br>Score in A1:<br>>=90: 'A'<br>>=80: 'B'<br>>=70: 'C'<br>else: 'F'
Use:<br>=IFS(A1>=90, "A", A1>=80, "B", A1>=70, "C", TRUE, "F")<br><br>This checks each score range and returns the correct grade.
Click to reveal answer
What does the IFS function return if the first condition is TRUE?
AThe value for the first condition
BThe value for the last condition
CAn error
DAll values for all true conditions
Which of these is the correct syntax for IFS?
AIFS(condition1:value1, condition2:value2)
BIFS(value1, condition1, value2, condition2)
CIFS(condition1, value1, condition2, value2)
DIFS(condition1; value1; condition2; value2)
What should you add to IFS to avoid errors if no conditions are true?
ANothing, IFS never errors
BA final condition TRUE with a default value
CA nested IF inside IFS
DA SUM function
Which is a benefit of using IFS over nested IFs?
ASupports more conditions
BRuns faster on large data
CAutomatically formats cells
DCleaner and easier to read
If you want to check if A1 is greater than 10 and return 'Yes', otherwise 'No', which formula is correct?
AIFS(A1>10, "Yes", TRUE, "No")
BIFS(A1>10, "No", TRUE, "Yes")
CIFS(TRUE, "Yes", A1>10, "No")
DIFS(A1>10, "Yes")
Explain how the IFS function works and when you would use it instead of nested IF statements.
Think about checking many yes/no questions in order.
You got /4 concepts.
    Describe how to handle the case when none of the IFS conditions are true to avoid errors.
    What acts like an 'else' in IFS?
    You got /3 concepts.