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?
✗ Incorrect
INDIRECT("B2") returns the value stored in cell B2.
If cell A1 contains "C3", what does =INDIRECT(A1) return?
✗ Incorrect
INDIRECT uses the text in A1 as a reference, so it returns the value in cell C3.
Which of these is a correct use of INDIRECT to sum cells A1 to A5?
✗ Incorrect
SUM(INDIRECT("A1:A5")) sums the range A1:A5 using INDIRECT to create the reference.
What error appears if INDIRECT refers to a non-existent cell?
✗ Incorrect
INDIRECT returns #REF! error if the reference text is invalid or points to a non-existent cell.
How can INDIRECT help when referencing different sheets dynamically?
✗ Incorrect
INDIRECT can build sheet references from text strings, allowing dynamic sheet referencing.
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.