I have a field that lists every record with a number as the primary key.
Example 1:
ID Record
1 1
2 2
3 3
How would I add a new record in there without overwriting anything and making the old records just drop down a number?
Example 2:
ID Record
1 1
2 New record
3 2
4 3
So basically I'm just trying to add in a new record in the middle and have the ID value of every record below it to automatically drop down. Can anyone help? thanks
Example 1:
ID Record
1 1
2 2
3 3
How would I add a new record in there without overwriting anything and making the old records just drop down a number?
Example 2:
ID Record
1 1
2 New record
3 2
4 3
So basically I'm just trying to add in a new record in the middle and have the ID value of every record below it to automatically drop down. Can anyone help? thanks