Incremental Numbering of a Column

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We have a spreadsheet that we want the first column to automatically change
the cell under it one digit higher..

for example

300
301
302
303
....

How can this be done for a column in Excel? What is the formula if there is
one to do this?

If this is the wrong newsgroup sorry.. not sure where to post the question..

Thanks...
 
Insert the formula =ROW() in all cells in the target column
OR type the starting value of the counter in a cell, say, A1
Then type =A1+1 in the cell below, then copy this formula to all cells in
that column.

If you want just the cell in the row below to be changed and no further rows
to be changed, you would need to use an event such as
Worksheet_SelectionChange and write the code in its handler: he code can be
messy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top