Arrays
Elements of arrays can be accessed directly using bracket notation. The value to use as an index starts at the number 1.
=ARRAY(1, 2, 3)[2]→2
=ARRAY(1, 2, 3)[1]→1
=ARRAY(1, 2, 3)[0]→#ERROR!
Updated over 1 year ago
Elements of arrays can be accessed directly using bracket notation. The value to use as an index starts at the number 1.
=ARRAY(1, 2, 3)[2]→2
=ARRAY(1, 2, 3)[1]→1
=ARRAY(1, 2, 3)[0]→#ERROR!
Updated over 1 year ago