0
0
Excelspreadsheet~5 mins

IF function in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the IF function do in Excel?
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.
The syntax is: =IF(condition, value_if_true, value_if_false).
Click to reveal answer
beginner
How would you use IF to check if a number in cell A1 is greater than 10?
Use =IF(A1>10, "Yes", "No"). It shows "Yes" if A1 is more than 10, otherwise "No".
Click to reveal answer
beginner
Can the IF function return text values? Give an example.
Yes. Example: =IF(B1="Pass", "Well done", "Try again") returns text based on B1's value.
Click to reveal answer
intermediate
What happens if the condition in IF is false and you leave value_if_false empty?
Excel returns FALSE by default if value_if_false is missing.
Click to reveal answer
What will =IF(5 > 3, "Yes", "No") return?
A3
B"No"
C"Yes"
D5
Which part of IF function is the condition to check?
Acondition
Bvalue_if_false
Cvalue_if_true
Dresult
What does =IF(A1=10, 100, 0) do?
AReturns 10 if A1 equals 100, else 0
BReturns 100 if A1 equals 10, else 0
CReturns 0 if A1 equals 10, else 100
DAlways returns 100
Can IF function be used to return numbers?
AYes, it can return numbers or text
BOnly logical TRUE or FALSE
CNo, only text
DOnly dates
What will =IF(FALSE, "Yes", "No") return?
A"Yes"
BFALSE
CTRUE
D"No"
Explain how the IF function works in Excel with an example.
Think about checking if a number is bigger than another.
You got /4 concepts.
    Describe a real-life situation where you could use the IF function in a spreadsheet.
    Consider grading students or checking sales targets.
    You got /4 concepts.