Can this scenario be achieved in Excel so I get automatic ID column increment every time new row is inserted? (no matter in which place – at the beginning, in the middle or at the end of sheet):
- There is a cell in excel (lets call it
max_value
) which holds integer value; - There is a column (
column A
) which holds IDs (all of these ids will be <=max_value
); - After user inserts new row, no matter in which place,
max_value
gets first incremented by 1, and thencolumn A
in that new row is populated withmax_value
.