Home > database >  Google Sheets - Auto Increment numbers based on a cell value
Google Sheets - Auto Increment numbers based on a cell value

Time:06-11

I am currently trying to make number increment based on a cell value For example, if the cell value is 5, then a number increment should appear shows in row by row as

1
2
3
4
5

Anyone has ideas on how to do this?

CodePudding user response:

You need SEQUENCE() function. Try-

=SEQUENCE(B1)

enter image description here

Reference:

  • Related