I will look into your database. A couple things though. I am working under the direction of my boss, so some of the things you are suggesting are out of my control, such as how the items are numbered. I am not the person who creates the item numbers, order numbers, or serial numbers. Someone else in my company does all of that, so I am just doing what I am told. I do not know why they use decimal numbers for their item numbers, but they do. So, the order in which the items are stored does not matter; all that matters is that each item number is linked to the appropriate order number and that each serial number is linked to the appropriate item number. Does that answer your question about how I am ordering the item numbers under each customer order?
The way that I have my tables set up links the data in the way that they are currently keeping track of it. I do see your point on making a separate table for the customer info and a separate table for the order info, but in regards to specific customer info, I am creating this database for a section of my company that only cares about the customer name. They do not care about anything else regarding who the customer is. That is why I have the customer name in the same table as the order number, because the customer name and order number do go hand-in-hand.
Finally, I am fully aware that every time I modify my data structure, I have to modify the code. I have a strong feeling that something in the VBA code of the frmreassign that you created needs to be modified because of the way I now have my tables set up, however I have no experience in VBA programming whatsoever, so I can't begin to think of how to modify the code because I don't know any of the VBA syntax. I see in your code that you are telling the Inspection Table to update its ID number based on the Customer Info Table ID number, but I now have an extra table called Item_Number_Table that links the Customer Order Info table to the Inspection Table, so I need to somehow tell the program to account for this. If there's any way you could guide me on that, it would be greatly appreciated.