0
0
Google Sheetsspreadsheet~5 mins

Custom formula-based rules in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a custom formula-based rule in Google Sheets conditional formatting?
It is a rule where you write your own formula to decide which cells get special formatting. The formula must return TRUE for cells to be formatted.
Click to reveal answer
beginner
How do you write a custom formula to highlight cells in column A that are greater than 100?
Use the formula =A1>100 in the custom formula rule. This checks each cell in column A if it is more than 100.
Click to reveal answer
intermediate
Why do you use absolute and relative references carefully in custom formulas?
Because the formula applies to many cells, relative references change for each cell, while absolute references stay fixed. This controls which cells the formula checks.
Click to reveal answer
beginner
What happens if your custom formula returns FALSE for a cell in conditional formatting?
That cell will not get the special formatting. Only cells where the formula returns TRUE are formatted.
Click to reveal answer
intermediate
Give an example of a custom formula to highlight rows where the value in column B is empty.
Use =ISBLANK($B1). The dollar sign fixes column B, and the row number adjusts for each row.
Click to reveal answer
What must a custom formula return to apply formatting to a cell?
AFALSE
BTRUE
CA number
DText
Which formula highlights cells in column C that are less than 50?
A=$C1<50
B=C$1<50
C=C1<50
D=$C$1<50
What does the dollar sign ($) do in a custom formula reference?
AChanges the cell color
BMakes the reference relative
CDeletes the reference
DMakes the reference absolute (fixed)
If you want to highlight entire rows where column A is 'Yes', which formula is correct?
A=A$1="Yes"
B=A1="Yes"
C=$A1="Yes"
D=$A$1="Yes"
Can you use functions like ISBLANK() in custom formula rules?
AYes, to check conditions like empty cells
BNo, only simple comparisons
COnly in Excel, not Google Sheets
DOnly with numbers
Explain how to create a custom formula-based rule to highlight cells in a column based on a condition.
Think about how the formula checks each cell and returns TRUE or FALSE.
You got /5 concepts.
    Describe the role of absolute and relative references in custom formula rules and why they matter.
    Consider how the formula moves when applied to many cells.
    You got /5 concepts.