I have a table (formatted as table) for the inputs. I want to add a unique ID column to my table.
Constraints:
it should not use any other columns
it should be constant and stable, meaning that inserting a new row won't change any row IDs, but only adds a new one.
Anything calculated from another column's value is not useful because there will be typos. So changing the ID will mean data loss in other tables connected to this one.
Simply adding an index in query editor is not useful because there will be inserted rows in the middle, and ids are recalculated at this action
I am also open for any VBA solution. I tried to write a custom function taht would add a new ID into an "rowID" column in the same row if there is no ID yet, but I failed with referencing the cells from a function called from a Table.