Recall & Review
beginner
What does the SEQUENCE function do in Excel?
The SEQUENCE function creates a list of numbers in order, arranged in rows and columns you choose.
Click to reveal answer
beginner
Write the formula to create a vertical list of numbers from 1 to 5 using SEQUENCE.
Use =SEQUENCE(5) to create a column with numbers 1, 2, 3, 4, 5.
Click to reveal answer
beginner
How do you create a 3-row by 4-column grid of numbers starting at 1 with SEQUENCE?
Use =SEQUENCE(3,4) to create 3 rows and 4 columns filled with numbers from 1 to 12.
Click to reveal answer
intermediate
What does the third argument in SEQUENCE(rows, columns, start) control?
The third argument sets the starting number for the sequence.
Click to reveal answer
intermediate
How can you make SEQUENCE count by 2s instead of 1s?
Use the fourth argument for step size: =SEQUENCE(rows, columns, start, step). For example, =SEQUENCE(5,1,1,2) counts 1, 3, 5, 7, 9.
Click to reveal answer
What formula creates a 2-row by 3-column sequence starting at 10?
✗ Incorrect
The formula =SEQUENCE(2,3,10) creates 2 rows and 3 columns starting at 10.
What does =SEQUENCE(4) produce?
✗ Incorrect
With only one argument, SEQUENCE creates a column with that many rows.
How do you make SEQUENCE count by 5 starting at 0 for 6 numbers?
✗ Incorrect
The fourth argument sets the step size. =SEQUENCE(6,1,0,5) counts 0,5,10,15,20,25.
Which argument controls the number of columns in SEQUENCE?
✗ Incorrect
The second argument sets how many columns the sequence has.
What happens if you omit the start number in SEQUENCE?
✗ Incorrect
If you omit the start number, SEQUENCE starts counting from 1 by default.
Explain how to use the SEQUENCE function to create a table of numbers with 3 rows and 5 columns starting at 10 and counting by 2.
Remember the order: rows, columns, start, step.
You got /6 concepts.
Describe what happens when you use =SEQUENCE(4) in a cell and how the output looks.
Think about default arguments when only one number is given.
You got /4 concepts.