Complete the formula to select cell B2 in Google Sheets.
=INDIRECT("[1]")
The INDIRECT function takes a cell reference as text. To select cell B2, you write "B2" inside the quotes.
Complete the formula to select the entire row 3 in Google Sheets.
=INDIRECT("[1]")
To select an entire row, use the format "row:row" inside quotes. For row 3, it is "3:3".
Fix the error in the formula to select column D in Google Sheets.
=INDIRECT("[1]")
To select an entire column, use the format "column:column" inside quotes. For column D, it is "D:D".
Fill both blanks to select cells from B2 to D4 in Google Sheets.
=INDIRECT("[1]:[2]")
To select a range of cells, write the start cell and end cell separated by a colon inside quotes. Here, from B2 to D4 is "B2:D4".
Fill both blanks to select cells from column A, rows 1 to 5 in Google Sheets.
=INDIRECT("[1]:[2]")
To select cells in column A from row 1 to 5, write "A1:A5" inside quotes.