I need help to create a replacement combo box used on a form for the purpose of returning items purchased from a vendor. I will supply a pic of the existing form and this will explain better our needs. The form works perfectly except we need additional criteria in selecting process. The current form allows us to select a part from another tbl/qry via combo box that when selected automatically fills in other fields attached to that part. Our problem arises when we select a part we have purchased multiple times that has numerous invoices and dates for the same part number. We need it to specify the part then the specific date/invoice attached to that part. There are three tables called tbl_OutsidePurchaseDetails that contains purchase data for all part information; tbl_Supplier which contains vendor information; and one called tbl_Returns which contains all parts returned to vendors. Since our tbl_OutsidePurchaseDetails now contains part numbers that are duplicated should I break it down into multiple tables one for part numbers, invoice details (since we purchase multiple items on same invoice) and then build a new form or try to build a new combo box that is trigger by the first combo box. Need help which way I should procede.