If possible, I'd like to have Excel insert a number that increments by one in the first column of every new row in a given table like so:
but that will also allow for manual override by the user, like so:
This is like how QuickBooks will automatically increment check and invoice numbers, though it allows the number to be changed and will increment the next one based on the number manually entered.
I tried formulas like:
and:
but these caused errors when sorting.
I also tried Excel's auto incrementing number feature, but have not been able to make it automatically continue the series when a new table row is added.
Does anyone know of a solution?
Code:
GID FN LN
800 John Smith
801 Jill Rogers
802 Sam Spade
803 Sally Spade
804 Bill Bayes
Code:
800
801
802
802 <--- user changed this to 802, which is the same number as cell above
803 <--- incrementing resumed by incrementing cell above by 1
I tried formulas like:
Code:
=A1+1
Code:
=INDIRECT(ADDRESS(ROW()-1,COLUMN()))+1
I also tried Excel's auto incrementing number feature, but have not been able to make it automatically continue the series when a new table row is added.
Does anyone know of a solution?