๐ฐA1 notation
ABC = 1*26^2 + 2*26 + 3 // ่ฝๆ็บ 10 ้ฒไฝ
Z + A = AA // = 26 + 1 = AA
ZZ + A = AAA // = 26ยฒ + 26 + 1 = AAASheet1!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"Last updated