0
0
Excelspreadsheet~20 mins

INDIRECT for dynamic references in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
INDIRECT Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
What is the output of this INDIRECT formula?
Given the following setup:

Cell A1 contains the text B2.
Cell B2 contains the number 150.

What value will the formula =INDIRECT(A1) return?
A150
BB2
C#REF! error
D0
Attempts:
2 left
💡 Hint
INDIRECT uses the text in a cell to get the value from that referenced cell.
Function Choice
intermediate
2:00remaining
Which formula correctly uses INDIRECT to sum a range defined by text in cells?
Cells A1 and A2 contain the text C1 and C5 respectively.

You want to sum the range from C1 to C5 using INDIRECT.

Which formula will do this correctly?
A=SUM(INDIRECT(CONCATENATE(A1, ":", A2)))
B=SUM(INDIRECT(A1 + ":" + A2))
C=SUM(INDIRECT(A1 & ":" & A2))
D=SUM(INDIRECT(A1 & "," & A2))
Attempts:
2 left
💡 Hint
Use & to join text strings in Excel formulas.
📊 Formula Result
advanced
2:00remaining
What is the result of INDIRECT with R1C1 notation?
Cell A1 contains the number 3.

What value will the formula =INDIRECT("R" & A1 & "C2", FALSE) return if cell B3 contains 200?
A200
B#REF! error
CR3C2
DFALSE
Attempts:
2 left
💡 Hint
The second argument FALSE tells INDIRECT to use R1C1 style referencing.
🎯 Scenario
advanced
2:00remaining
Using INDIRECT to reference a sheet name from a cell
You have two sheets named January and February.
Cell A1 in the current sheet contains the text February.
Cell B2 in the February sheet contains the value 500.

Which formula will correctly return the value 500 using INDIRECT?
A=INDIRECT(A1 & "!B2")
B=INDIRECT("B2" & A1)
C=INDIRECT(A1 & "B2")
D=INDIRECT("'" & A1 & "'!B2")
Attempts:
2 left
💡 Hint
Sheet names with spaces or special characters need single quotes around them.
data_analysis
expert
2:30remaining
How many cells will this INDIRECT formula reference?
Cell A1 contains the text D3.
Cell A2 contains the text D7.

What is the number of cells included in the range referenced by the formula =INDIRECT(A1 & ":" & A2)?
A6
B5
C4
D7
Attempts:
2 left
💡 Hint
Count all cells from D3 down to D7 inclusive.