0
0
Google Sheetsspreadsheet~5 mins

AND and OR functions in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the AND function do in Google Sheets?
The AND function checks if all given conditions are TRUE. It returns TRUE only if every condition is TRUE; otherwise, it returns FALSE.
Click to reveal answer
beginner
What is the result of OR(TRUE, FALSE, FALSE) in Google Sheets?
The OR function returns TRUE if at least one condition is TRUE. Since one condition is TRUE here, the result is TRUE.
Click to reveal answer
beginner
Write a formula using AND to check if A1 is greater than 10 and B1 is less than 5.
The formula is =AND(A1>10, B1<5). It returns TRUE only if both conditions are true.
Click to reveal answer
beginner
How does the OR function behave if all conditions are FALSE?
If all conditions are FALSE, the OR function returns FALSE because it needs at least one TRUE to return TRUE.
Click to reveal answer
intermediate
Can AND and OR functions be combined in one formula? Give a simple example.
Yes! For example, =AND(A1>5, OR(B1=10, C1=20)) checks if A1 is greater than 5 AND either B1 equals 10 OR C1 equals 20.
Click to reveal answer
What does =AND(TRUE, FALSE, TRUE) return?
ATRUE
BFALSE
CError
D0
Which formula returns TRUE if at least one condition is TRUE?
A=OR(A1>5, B1<10)
B=AND(A1>5, B1<10)
C=NOT(A1>5)
D=SUM(A1, B1)
What will =OR(FALSE, FALSE, FALSE) return?
ATRUE
B0
CFALSE
DError
How do you check if both A1 and B1 are greater than 0?
A=SUM(A1>0, B1>0)
B=OR(A1>0, B1>0)
C=NOT(A1>0)
D=AND(A1>0, B1>0)
Which formula checks if A1 is greater than 10 OR B1 is less than 5?
A=OR(A1>10, B1<5)
B=AND(A1>10, NOT(B1<5))
C=AND(A1>10, B1<5)
D=OR(A1<10, B1>5)
Explain how the AND function works and give a real-life example where you might use it in a spreadsheet.
Think about situations where everything must be true to succeed.
You got /3 concepts.
    Describe the difference between AND and OR functions and when you would use each.
    Consider the difference between 'all must be true' and 'any can be true'.
    You got /4 concepts.