0
0
Google Sheetsspreadsheet~5 mins

Cross-column conditional rules in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a cross-column conditional rule in Google Sheets?
A cross-column conditional rule checks values across two or more columns to apply formatting or logic based on conditions involving multiple columns.
Click to reveal answer
beginner
How do you write a formula for conditional formatting that compares values in column A and column B?
Use a formula like =A1>B1 in the conditional formatting rule to compare values in the same row across columns A and B.
Click to reveal answer
intermediate
Why do you use absolute and relative references carefully in cross-column conditional rules?
Because relative references adjust for each cell, while absolute references stay fixed. For cross-column rules, you usually want relative row references to compare cells in the same row across columns.
Click to reveal answer
beginner
Example: What does the formula =AND(A1>10, B1<5) do in conditional formatting?
It applies formatting only if the value in column A is greater than 10 AND the value in column B is less than 5 for the same row.
Click to reveal answer
beginner
Can cross-column conditional rules be used to highlight rows where two columns have the same value?
Yes! Use a formula like =A1=B1 in conditional formatting to highlight rows where the values in columns A and B match.
Click to reveal answer
Which formula highlights cells in column A when the value in column A is greater than the value in column B in the same row?
A=A1>B1
B=B1>A1
C=A$1>B$1
D=$A1>$B1
What does the formula =AND(A1>5, B1<10) do in conditional formatting?
AFormats if A1 is greater than 5 OR B1 is less than 10
BFormats if A1 is greater than 5 AND B1 is less than 10
CFormats if A1 equals B1
DFormats if either A1 or B1 is empty
In cross-column conditional formatting, why avoid using absolute row references like $1 in formulas?
ABecause it makes the formula slower
BBecause it highlights the wrong columns
CBecause it causes errors in Google Sheets
DBecause it fixes the row and stops the formula from adjusting for each row
Which formula highlights rows where values in columns A and B are equal?
A=A1=B1
B=AND(A1,B1)
C=A1<>B1
D=OR(A1,B1)
What is the main benefit of using cross-column conditional rules?
ATo create charts
BTo sort data automatically
CTo format cells based on values in other columns
DTo delete rows
Explain how to create a conditional formatting rule that highlights cells in column A when the value is greater than the value in column B in the same row.
Think about comparing cells in the same row across two columns.
You got /5 concepts.
    Describe why relative references are important in cross-column conditional formatting formulas.
    Consider what happens when the formula is applied to multiple rows.
    You got /4 concepts.