Instead of entering the numbers in Column A, you could just use this formula in all of your cells:
=ROW()
This will insert the corresponding row number into the cell and will automatically adjust if rows are inserted/deleted.
You can add or subtract from that formula as well if your numbers don't match up with the actual row. For example:
=ROW()-1
or
=ROW()+12
HTH
Elkar
First, sorry for the long reply... I had a long Holiday weekend.Open up your workbook.
Hit Alt-F11 to bring up the Visual Basic Editor.
On the left side you should see a "Project - VBAProject" window.
Find your workbook name there, and expand the tree until you see your individual sheet names listed.
Double-click on the worksheet you want to apply this to (ex. "Sheet1" (YourSheetName))
You should now see a larger window open to the right
Paste the above code into that window.
Close the Visual Basic Editor
Try it out
HTH
Elkar