0
0
Google Sheetsspreadsheet~5 mins

IF function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the IF function do in Google Sheets?
The IF function checks if a condition is true or false. It returns one value if true, and another if false.
Click to reveal answer
beginner
Write the basic syntax of the IF function.
IF(condition, value_if_true, value_if_false)<br>Example: IF(A1>10, "Yes", "No")
Click to reveal answer
beginner
How would you use IF to check if a number in cell B2 is greater than 100 and return "High" or "Low"?
Use: IF(B2>100, "High", "Low")<br>This means if B2 is more than 100, show "High", otherwise show "Low".
Click to reveal answer
intermediate
Can the IF function be nested inside another IF function? What is this used for?
Yes, nesting IFs means putting one IF inside another. It helps check multiple conditions step by step.
Click to reveal answer
beginner
What happens if you leave the value_if_false part empty in an IF function?
If value_if_false is empty, the IF function returns FALSE when the condition is not met.
Click to reveal answer
What will the formula =IF(A1=5, "Yes", "No") return if A1 contains 5?
AFALSE
B"No"
C5
D"Yes"
Which part of the IF function is checked first?
Avalue_if_true
Bvalue_if_false
Ccondition
DNone
What does this formula return if B2 is 50? =IF(B2>100, "High", "Low")
A"Low"
B"High"
C50
DTRUE
How do you write an IF function that returns TRUE if C3 is empty?
AIF(C3="", TRUE, FALSE)
BIF(C3, TRUE, FALSE)
CIF(C3=TRUE, "", FALSE)
DIF(C3=FALSE, TRUE, FALSE)
What will =IF(10>5) return in Google Sheets?
ATRUE
BError
CFALSE
D10&gt;5
Explain how the IF function works and give a simple example.
Think about checking a question and choosing between two answers.
You got /4 concepts.
    Describe how you can use nested IF functions to check multiple conditions.
    Imagine asking several yes/no questions one after another.
    You got /4 concepts.