Sheet1!A1:B2 # first two cells in top two rows of `Sheet1`
Sheet1!A:A # first column of `Sheet1`
Sheet1!1:2 # first two rows of `Sheet1`
Sheet1!A5:A # first column (from row 5 onward)
A1:B2 # first two cells in top two rows
Sheet1 # all the cells in `Sheet1`
'My Custom Sheet'!A:A # first column of sheet named "My Custom Sheet"
'My Custom Sheet' # all the cells in "My Custom Sheet"
๐กTip:
where possible, use distinct names for the objects within your spreadsheets. For example, A1 refers to the cell A1 in the first visible sheet, whereas 'A1' refers to all the cells in a sheet named A1. Similarly, Sheet1 refers to all the cells in Sheet1. However, if thereโs a named range titled "Sheet1", then Sheet1 refers to the named range and 'Sheet1' refers to the sheet.
single quotes are required for sheet names with spaces, special characters, or an alphanumeric combination.