0
0
Google Sheetsspreadsheet~20 mins

INDIRECT for dynamic references in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
INDIRECT Mastery Badge
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 cell A1 contains the text B2 and cell B2 contains the number 150, what value will the formula =INDIRECT(A1) return?
A150
BB2
CA1
D#REF! error
Attempts:
2 left
💡 Hint
INDIRECT uses the text in A1 as a cell reference.
Function Choice
intermediate
2:00remaining
Which formula correctly uses INDIRECT to sum a range defined in cells?
Cells A1 and A2 contain the text C1 and C5 respectively. Which formula sums the range from C1 to C5 using INDIRECT?
A=SUM(INDIRECT(A1 & ":" & A2))
B=SUM(INDIRECT(A1, A2))
C=SUM(INDIRECT(A1:A2))
D=SUM(INDIRECT("A1:A2"))
Attempts:
2 left
💡 Hint
Concatenate the start and end cell references with a colon inside INDIRECT.
🎯 Scenario
advanced
2:30remaining
Using INDIRECT to reference different sheets dynamically
You have two sheets named January and February. Cell A1 on the current sheet contains the text January. Cell B2 in both sheets contains sales data. Which formula correctly retrieves the sales data from the sheet named in A1?
A=INDIRECT("A1!B2")
B=INDIRECT("'" & A1 & "'!B2")
C=INDIRECT(B2 & "!" & A1)
D=INDIRECT(A1 & "!B2")
Attempts:
2 left
💡 Hint
Sheet names with spaces or special characters need single quotes around them.
📊 Formula Result
advanced
1:30remaining
What error does this INDIRECT formula produce?
If cell A1 contains the text SheetX!Z100 but SheetX does not exist, what will the formula =INDIRECT(A1) return?
A#VALUE! error
B0
C#REF! error
DEmpty cell
Attempts:
2 left
💡 Hint
INDIRECT returns an error if the reference does not exist.
data_analysis
expert
2:00remaining
How many cells are summed by this formula?
Cells A1 and A2 contain the text D3 and D7 respectively. What is the number of cells summed by the formula =SUM(INDIRECT(A1 & ":" & A2))?
A7
B4
C6
D5
Attempts:
2 left
💡 Hint
Count all cells from D3 to D7 inclusive.