I have have two tables...tblProducts and tblCustomerPartNumbers. I need to record the part number a customer gives to a product that the manufacturer has given a part number, ie the manufacturer builds a product and sets the Part Number as R5G100, but the customer lists it as 000-123-00. I have a field on my entry form that combines fields so that I ensure it is not duplicated.... Me.txtRecordIdentifier = Me.txtCustomerPartNumber & " " & cboCustomer & " " & Me.cboManufacturer & " " & Me.txtDescription
I now need to be able to test if a product has been matched to a customer and recorded. To make things difficult, different companies using the same product give it different Part Numbers and others will use the manufacturers number.
I now need to be able to test if a product has been matched to a customer and recorded. To make things difficult, different companies using the same product give it different Part Numbers and others will use the manufacturers number.