0
0
Excelspreadsheet~20 mins

SEQUENCE function in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
SEQUENCE Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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)
AA 3-row by 2-column array with numbers 1 to 6 filled by rows
BA 3-row by 2-column array with numbers 1 to 6 filled by columns
CA single column with numbers 1 to 3
DA single row with numbers 1 to 2
Attempts:
2 left
💡 Hint
Remember SEQUENCE fills numbers starting from 1 by default, filling down columns first.
Function Choice
intermediate
2: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?
A=SEQUENCE(1,5,10,3)
B=SEQUENCE(5,1,10,3)
C=SEQUENCE(1,5,3,10)
D=SEQUENCE(5,1,3,10)
Attempts:
2 left
💡 Hint
Remember the order of arguments: rows, columns, start, step.
🎯 Scenario
advanced
2: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?
A=SEQUENCE(4,1,-5,20)
B=SEQUENCE(1,4,20,-5)
C=SEQUENCE(4,1,20,-5)
D=SEQUENCE(1,4,-5,20)
Attempts:
2 left
💡 Hint
Rows first, then columns. Negative step decreases the number.
📊 Formula Result
advanced
2:00remaining
Output of SEQUENCE with zero rows
What happens if you enter the formula =SEQUENCE(0,3) in a cell?
Excel
=SEQUENCE(0,3)
AReturns a #VALUE! error because rows cannot be zero
BReturns an empty array with zero rows and 3 columns
CReturns a single cell with value 1
DReturns a 3-row by 0-column array
Attempts:
2 left
💡 Hint
Check if SEQUENCE allows zero for rows or columns.
data_analysis
expert
2: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)
A8
B7
C15
D12
Attempts:
2 left
💡 Hint
Multiply rows by columns to find total numbers generated.