TLDR: I summarized the long question at the end of the question.
My business is using an Ms Access DB properly set with relationships, PKs, and FKs. I sometimes have to make major modifications to tables (adding fields, conducting column operations, you know, stuff that I believe only Excel can do: string operations (LEFT, RIGHT, etc.), INDEX/MATCH (VLOOKUPS), auto population of fields, etc...
What I do then is I export the tables to Excel to apply, conduct the modifications. My problem arises when I'm done and I want to import back the tables. I get a problem with IDs and the AutoNumber feature in Access. When I import the table, I cannot use the previous ID column and have to make a new one so that I can obtain a working AutoNumber ID column. The problem is that if there was any change in the order of the records, or in the number of records (i.e. if some records were deleted), then the new automatically generated IDs won't be the same as the old ones, creating problems with my relationships. The FKs won't point to the right PKs anymore.
I tried to search on ways to handle this problem, but didn't find anything, as if nobody else have this problem. I'm probably not doing it right I guess.
Short version: PK/FK problem when I export-import tables Access-Excel. During the import, I cannot re-use my initial PK column as AutoNumber, and thus I create a new ID autonumber column, leading to the problem that some IDs will change, creating problems with FKs (relationships).