Ted,
You should not allow the data to remain in its current state. Here's
what I would do...
1. Make sure you have a backup copy of the database.
2. Make a new blank table with the same structure as the problem table.
3. Look at the problem table and note the ID numbers of the records
either side of the corrupted records.
4. Make an Append Query based on the problem table, first of all
selecting all records before the corrupted records, and run the query to
enter the records into the new table, and then do the same for those
records after the corrupted records.
5. Compact the database.
6. Make a new MDB file, and from the File|GetExternal Data menu, import
all objects from the existing MDB.
7. Compact again.
8. To reduce the chance of future problems such as this, split the
database so each user has their own copy of the fronntend application on
the local machine, linked to the tables in a common backend file on the
server.