SEQUENCE Excel for Office 365 function of

SEQUENCE function to generate a series of consecutive numbers in the array.

grammar

= SEQUENCE (row [column], [Start number], [delta])

parameter

description

rows

essential

The number of rows to be returned

[columns]

Optional

The number of columns to be returned

[start]

Optional

The first number in the sequence

[step]

Optional

Value is incremented each successive array values ​​can also be negative, fractional

note: 

  • Any missing optional parameters will default to 1. 

  • Values ​​may be considered as a line array, a combination of values ​​or value lines and columns of values.


Applications

=SEQUENCE(5,5,1,1)

snap020.jpg


=SEQUENCE(5,1,1,2)

snap021.jpg

=SEQUENCE(1,10,1,0.1)

snap022.jpg

=SEQUENCE(1,10,1,-0.1)

snap023.jpg

=SEQUENCE(1,10,0.1,0.1)

snap024.jpg

Guess you like

Origin blog.51cto.com/ycrsjxy/2480337