I don't know what to tell you, you still have a plague of errors. You really need to read up on normalization. You don't mention what table this Supplier field is in, I'm guessing tblItemList. If so, Supplier shouldn't be a primary key in this table. Nor should the Supplier field be text in this field. It should contain a numeric foreign key to tblSupplierList.
Also, tlbSupplierList shouldn't have one field called 'City/State'. First you should only use alphanumeric characters and underscores in object names. Second, each discrete piece of data needs to be in its own field. That mans a field for City and a field for State.
Additionally, you created tblPurchaseOrderItems but put too many fields in it. Tables should have data vertically not horizontally. Instead of all those numerated field names (TotalInventory1, TotalInventory2...) you should just have 1 field called 'TotalInventory' and then add rows of data if you need to add more.
Again, read up on normalization for a day. You have lots and lots of basic errors.