0
0
Excelspreadsheet~10 mins

SEQUENCE function in Excel - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to create a sequence of 5 numbers starting from 1.

Excel
=SEQUENCE([1])
Drag options to blanks, or click blank then click option'
A10
B5
C1
D0
Attempts:
3 left
💡 Hint
Common Mistakes
Using 1 creates only one number, not a sequence.
Using 0 or negative numbers causes errors.
2fill in blank
medium

Complete the formula to create a sequence with 3 rows and 4 columns.

Excel
=SEQUENCE([1], 4)
Drag options to blanks, or click blank then click option'
A3
B4
C5
D1
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping rows and columns arguments.
Using the wrong number for rows.
3fill in blank
hard

Fix the error in the formula to start the sequence at 10 with 5 numbers.

Excel
=SEQUENCE(5, 1, [1])
Drag options to blanks, or click blank then click option'
A1
B0
C10
D5
Attempts:
3 left
💡 Hint
Common Mistakes
Leaving the start number as 1.
Using 0 or 5 which start the sequence at wrong numbers.
4fill in blank
hard

Fill both blanks to create a 2-row, 3-column sequence starting at 5 and increasing by 2.

Excel
=SEQUENCE([1], [2], 5, 2)
Drag options to blanks, or click blank then click option'
A2
B3
C4
D5
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping rows and columns.
Using wrong numbers for rows or columns.
5fill in blank
hard

Fill all three blanks to create a 4-row, 2-column sequence starting at 3 and decreasing by 1.

Excel
=SEQUENCE([1], [2], [3], -1)
Drag options to blanks, or click blank then click option'
A4
B2
C3
D1
Attempts:
3 left
💡 Hint
Common Mistakes
Using positive step instead of negative.
Swapping rows and columns.
Wrong start number.