SERIES

Returns the series of numbers.

Syntax

SERIES(initial_value, increment_by_value, num_values, [column_name])
  • initial_value - The initial value.

  • increment_by_value - The incrementer.

  • num_values - The number of values.

  • [column_name] - The name of column with values. The column name is "values" by default.

Sample Usage

SERIES(2, 3, 5)
SERIES(A3, A4, A5)

Return Value

  • The series of numbers.

Notes

See Also

Last updated

Was this helpful?