Challenge - 5 Problems
INDIRECT Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
What is the output of this INDIRECT formula?
Given the following setup:
Cell A1 contains the text
Cell B2 contains the number
What value will the formula
Cell A1 contains the text
B2.Cell B2 contains the number
150.What value will the formula
=INDIRECT(A1) return?Attempts:
2 left
💡 Hint
INDIRECT uses the text in a cell to get the value from that referenced cell.
✗ Incorrect
The formula INDIRECT(A1) reads the text in A1, which is 'B2', and returns the value in cell B2, which is 150.
❓ Function Choice
intermediate2:00remaining
Which formula correctly uses INDIRECT to sum a range defined by text in cells?
Cells A1 and A2 contain the text
You want to sum the range from C1 to C5 using INDIRECT.
Which formula will do this correctly?
C1 and C5 respectively.You want to sum the range from C1 to C5 using INDIRECT.
Which formula will do this correctly?
Attempts:
2 left
💡 Hint
Use & to join text strings in Excel formulas.
✗ Incorrect
Option C correctly concatenates the text in A1 and A2 with a colon between to form a valid range reference like 'C1:C5'.
📊 Formula Result
advanced2:00remaining
What is the result of INDIRECT with R1C1 notation?
Cell A1 contains the number 3.
What value will the formula
What value will the formula
=INDIRECT("R" & A1 & "C2", FALSE) return if cell B3 contains 200?Attempts:
2 left
💡 Hint
The second argument FALSE tells INDIRECT to use R1C1 style referencing.
✗ Incorrect
The formula builds the reference 'R3C2' which points to row 3, column 2 (cell B3). The value in B3 is 200.
🎯 Scenario
advanced2:00remaining
Using INDIRECT to reference a sheet name from a cell
You have two sheets named
Cell A1 in the current sheet contains the text
Cell B2 in the February sheet contains the value 500.
Which formula will correctly return the value 500 using INDIRECT?
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?
Attempts:
2 left
💡 Hint
Sheet names with spaces or special characters need single quotes around them.
✗ Incorrect
Option D correctly adds single quotes around the sheet name and appends '!B2' to reference cell B2 in the February sheet.
❓ data_analysis
expert2:30remaining
How many cells will this INDIRECT formula reference?
Cell A1 contains the text
Cell A2 contains the text
What is the number of cells included in the range referenced by the formula
D3.Cell A2 contains the text
D7.What is the number of cells included in the range referenced by the formula
=INDIRECT(A1 & ":" & A2)?Attempts:
2 left
💡 Hint
Count all cells from D3 down to D7 inclusive.
✗ Incorrect
The range D3:D7 includes cells D3, D4, D5, D6, and D7, which is 5 cells total.