Changing a Primary Key is never something to take lightly.
If your current table is involved in multiple forms, queries, procedures, then your probability of problems is high.
If, however, you are just starting and this is your only table, or table that is not yet related to any others, you could do something along this logic.
As xenou suggested,
-create a new table with an autonumber pk., suggest you name it something like ClientPK (add any other fields not in your current table that you feel are needed, if any)
-if the manually entered data is meaningful to you, you could add a field to the new table eg OldClientId or similar and when you dd existing records to your new table, put the original ClientId in that field( then you'll have some history for existing records)
-use an INSERT query to add existing records to the new table.
More info from M$oft.
There may be other considerations if we knew more about your specific project and the reason for considering the PK change.
Good luck with your project.