Complete the formula to get the value from cell A1 using INDIRECT.
=INDIRECT([1])The INDIRECT function needs a text string representing the cell reference. So, "A1" is correct.
Complete the formula to get the value from the cell in column B and row number in cell A1.
=INDIRECT("B" & [1])
We want to use the row number stored in cell A1, so we use A1 without quotes to get its value.
Fix the error in the formula to reference cell C5 dynamically using INDIRECT.
=INDIRECT([1])The INDIRECT function requires a text string like "C5" to reference that cell.
Fill both blanks to create a formula that gets the value from the sheet named in cell A1 and cell B2.
=INDIRECT([1] & "!" & [2])
Use A1 without quotes to get the sheet name, and "B2" as text for the cell reference.
Fill all three blanks to create a formula that sums the range from cell A1 to the cell in column B and row number in cell A2 on the sheet named in cell A3.
=SUM(INDIRECT([1] & "!A1:" & [2] & [3]))
Use A3 without quotes to get the sheet name, "B" as text for the column, and A2 without quotes for the row number.