
Originally Posted by
Preston
You can't squeeze your Excel tab into a working Access database. You need to transform your data so that it fits normalization rules. Your entities are Item, Supplier, and Customer. Do you have multiple suppliers and customers for a single Item_ID? If so, you need a table for Item_ID, a table for Supplier_ID and and table for Customer_ID. You then need to tie Item_IDs to Supplier_IDs with a table containing ITem_ID relating to your Items table and Supplier_ID relating to your supplier table. You need another separate table to tie the items to customers in the same fashion.
If there is one supplier and one customer for each Item_ID, it's simpler, you can have a table with Item_ID as PK, and Supplier_ID and Customer_ID as separate fields. You'll still want separate reference tables for Suppliers and Customers.
If you can't do this, you're better off leaving it in Excel.