Scenario:
Need to assign a unique ID to ever row in my spreadsheet file. The ID can not be dependent upon the row number since I would like to have the opportunity to add rows in the future, below is an example just to illustrate what I'm looking for
| ID | Something |
| 1 | thing1 |
| 2 | thing2 |
| 3 | thing3 |
| 4 | thing4 |
If I want to add a row inbetween thing2 and thing3 it would look something like this:
| ID | Something |
| 1 | thing1 |
| 2 | thing2 |
| 5 | thing5 |
| 3 | thing3 |
| 4 | thing4 |
The number of rows in my document is several hundred so it would be nice to have some kind of formula that achieves this, preferably no user defined macros since the "soultion" needs to be implemented for several users, i.e. not just me on my local machine.
Any help would be greatly appreciated.
Bookmarks