Challenge - 5 Problems
SEQUENCE Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of a basic SEQUENCE function
What is the output of the formula
=SEQUENCE(3,2) when entered in a cell?Excel
=SEQUENCE(3,2)
Attempts:
2 left
💡 Hint
Remember SEQUENCE fills numbers starting from 1 by default, filling down columns first.
✗ Incorrect
The formula =SEQUENCE(3,2) creates a 3-row by 2-column array. It fills numbers starting at 1, going down the first column, then continuing to the next column. So the numbers go 1, 2, 3 in the first column and 4, 5, 6 in the second.
❓ Function Choice
intermediate2:00remaining
Choosing the right SEQUENCE formula for a custom start and step
Which formula creates a 1-row by 5-column sequence starting at 10 and increasing by 3 each step?
Attempts:
2 left
💡 Hint
Remember the order of arguments: rows, columns, start, step.
✗ Incorrect
The formula =SEQUENCE(1,5,10,3) creates 1 row and 5 columns, starting at 10 and increasing by 3 each time: 10, 13, 16, 19, 22.
🎯 Scenario
advanced2:00remaining
Generating a vertical sequence with negative step
You want to create a vertical list of 4 numbers starting at 20 and decreasing by 5 each step. Which formula will do this correctly?
Attempts:
2 left
💡 Hint
Rows first, then columns. Negative step decreases the number.
✗ Incorrect
=SEQUENCE(4,1,20,-5) creates 4 rows and 1 column, starting at 20 and subtracting 5 each step: 20, 15, 10, 5.
📊 Formula Result
advanced2:00remaining
Output of SEQUENCE with zero rows
What happens if you enter the formula
=SEQUENCE(0,3) in a cell?Excel
=SEQUENCE(0,3)
Attempts:
2 left
💡 Hint
Check if SEQUENCE allows zero for rows or columns.
✗ Incorrect
The SEQUENCE function requires the number of rows and columns to be positive integers. Zero rows is invalid and causes a #VALUE! error.
❓ data_analysis
expert2:00remaining
Counting numbers generated by a complex SEQUENCE formula
How many numbers does the formula
=SEQUENCE(4,3,5,2) generate in total?Excel
=SEQUENCE(4,3,5,2)
Attempts:
2 left
💡 Hint
Multiply rows by columns to find total numbers generated.
✗ Incorrect
The formula creates 4 rows and 3 columns, so total numbers = 4 × 3 = 12.