0
0
Google Sheetsspreadsheet~5 mins

INDIRECT for dynamic references in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the INDIRECT function do in Google Sheets?
The INDIRECT function takes a text string and turns it into a cell reference. It lets you create dynamic references that change based on the text you provide.
Click to reveal answer
beginner
How would you use INDIRECT to refer to cell A1 on a sheet named in cell B1?
Use =INDIRECT(B1 & "!A1") to create a reference to cell A1 on the sheet named in cell B1.
Click to reveal answer
intermediate
Why is INDIRECT useful when you want to change references without editing formulas?
Because INDIRECT uses text strings for references, you can change the text (like sheet names or cell addresses) and the formula updates automatically without rewriting it.
Click to reveal answer
beginner
What happens if the text inside INDIRECT does not form a valid reference?
Google Sheets will show a #REF! error because INDIRECT cannot find the cell or range described by the text.
Click to reveal answer
intermediate
Can INDIRECT be used to reference ranges dynamically? Give an example.
Yes. For example, =SUM(INDIRECT("A" & 1 & ":A" & 5)) sums cells A1 to A5. The range is built from text parts combined dynamically.
Click to reveal answer
What does INDIRECT("B2") return in Google Sheets?
AThe text "B2"
BThe value in cell B2
CAn error
DThe formula in B2
How can INDIRECT help when you want to sum a range on a sheet named in cell A1?
A=SUM(INDIRECT(A1 & "!A1:A10"))
B=SUM(A1!A1:A10)
C=SUM("A1!A1:A10")
D=SUM(INDIRECT("A1"))
What error appears if INDIRECT references a non-existent cell?
A#DIV/0!
B#VALUE!
C#NAME?
D#REF!
Which of these is a correct use of INDIRECT to reference cell C3?
A=INDIRECT("3C")
B=INDIRECT(C3)
C=INDIRECT("C3")
D=INDIRECT(C"3")
Why might you use INDIRECT instead of a direct cell reference?
ATo make formulas update when sheet names or ranges change
BTo speed up calculations
CTo prevent errors
DTo format cells
Explain how INDIRECT can be used to create a dynamic reference to a cell or range in another sheet.
Think about how text strings can build a reference.
You got /4 concepts.
    Describe a situation where using INDIRECT would make your spreadsheet easier to update.
    Imagine you rename sheets often or want to sum different ranges without changing formulas.
    You got /4 concepts.