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 from cell A1, so we use A1 without quotes to get its value.
Fix the error in the formula to reference the sheet named in cell A1 and cell B2.
=INDIRECT([1] & "!B2")
We want the sheet name from cell A1, so use A1 without quotes to get its value.
Fill both blanks to create a dynamic reference to the cell in the sheet named in A1, column in B1, and row 5.
=INDIRECT([1] & [2] & B1 & "5")
We get the sheet name from A1, add "!" to separate sheet and cell, then add the column from B1 and row 5.
Fill all three blanks to create a dynamic reference to the cell in the sheet named in A1, column letter in B1, and row number in C1.
=INDIRECT([1] & [2] & [3])
We use A1 for sheet name, add "!" separator, then combine column letter in B1 and row number in C1 for the cell reference.