Complete the formula to create a sequence of 5 numbers starting from 1.
=SEQUENCE([1])The SEQUENCE function with one argument creates a vertical array from 1 to that number. Here, 5 creates numbers 1 to 5.
Complete the formula to create a sequence with 3 rows and 4 columns.
=SEQUENCE([1], 4)
The first argument is the number of rows. Here, 3 rows and 4 columns create a 3x4 grid of numbers.
Fix the error in the formula to start the sequence at 10 with 5 numbers.
=SEQUENCE(5, 1, [1])
The third argument is the start number. To start at 10, put 10 there.
Fill both blanks to create a 2-row, 3-column sequence starting at 5 and increasing by 2.
=SEQUENCE([1], [2], 5, 2)
The first blank is rows (2), the second is columns (3). The sequence starts at 5 and increases by 2 each step.
Fill all three blanks to create a 4-row, 2-column sequence starting at 3 and decreasing by 1.
=SEQUENCE([1], [2], [3], -1)
The sequence has 4 rows, 2 columns, starts at 3, and decreases by 1 each step.