0
0
Excelspreadsheet~5 mins

INDIRECT for dynamic references in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the INDIRECT function do in Excel?
The INDIRECT function returns the value of a cell or range based on a text string that represents a cell reference. It lets you create dynamic references that change when the text changes.
Click to reveal answer
beginner
How would you use INDIRECT to refer to cell A1 dynamically if the cell address is in B1?
Use =INDIRECT(B1). If B1 contains "A1", INDIRECT returns the value in cell A1.
Click to reveal answer
intermediate
Why is INDIRECT useful when working with multiple sheets?
INDIRECT can build sheet names dynamically from text, so you can refer to cells on different sheets without changing the formula manually.
Click to reveal answer
beginner
What happens if the text string passed to INDIRECT is invalid?
Excel shows a #REF! error because INDIRECT cannot find a valid reference from the text string.
Click to reveal answer
intermediate
Can INDIRECT be used to refer to ranges? Give an example.
Yes. For example, =SUM(INDIRECT("A1:A5")) sums the values in cells A1 through A5 dynamically.
Click to reveal answer
What does =INDIRECT("B2") return?
AAn error
BThe text "B2"
CThe address of cell B2
DThe value in cell B2
If cell A1 contains "C3", what does =INDIRECT(A1) return?
AThe value in cell A1
BThe value in cell C3
CThe text "C3"
DAn error
Which of these is a correct use of INDIRECT to sum cells A1 to A5?
A=INDIRECT(A1:A5)
B=INDIRECT(SUM(A1:A5))
C=SUM(INDIRECT("A1:A5"))
D=SUM(A1:A5)
What error appears if INDIRECT refers to a non-existent cell?
A#REF!
B#VALUE!
C#NAME?
D#DIV/0!
How can INDIRECT help when referencing different sheets dynamically?
ABy using text strings to build sheet references
BBy typing sheet names manually
CBy copying formulas between sheets
DBy locking cell references
Explain how INDIRECT can be used to create a dynamic cell reference in Excel.
Think about how text can tell Excel which cell to look at.
You got /3 concepts.
    Describe a real-life scenario where INDIRECT helps manage data across multiple sheets.
    Imagine monthly reports on separate sheets.
    You got /3 concepts.