djfeldspiff
Programmer
Good afternoon!
I'm working on a database that is being used to cross reference pricing information on our products versus our competitors. In short, one table of our parts, one table of our competitors parts and a third table that houses a cross reference from our part to their part. I'm working on a user interface that would allow the user to browse our parts not having a record in the xref table and also browse our competitors parts not having a record in the xref table with the hope of marrying the data as a match is identified. The form I've created has two listboxes, one displaying each of the datasets I mentioned. I'd like the user to have the ability of selecting one or many of our parts to potentially one or many of their parts. After making the selections, I'd like the user to click on a command button that would write the record to the xref table. Each list box displays multiple columns to better identify the part number, but I only need one data element from our part list and two elements from their part list in order to make the cross reference successful. The data in question is: ourparts keyfield, competitoridnum, competitorpartnum. Can this be done via code?
I'm working on a database that is being used to cross reference pricing information on our products versus our competitors. In short, one table of our parts, one table of our competitors parts and a third table that houses a cross reference from our part to their part. I'm working on a user interface that would allow the user to browse our parts not having a record in the xref table and also browse our competitors parts not having a record in the xref table with the hope of marrying the data as a match is identified. The form I've created has two listboxes, one displaying each of the datasets I mentioned. I'd like the user to have the ability of selecting one or many of our parts to potentially one or many of their parts. After making the selections, I'd like the user to click on a command button that would write the record to the xref table. Each list box displays multiple columns to better identify the part number, but I only need one data element from our part list and two elements from their part list in order to make the cross reference successful. The data in question is: ourparts keyfield, competitoridnum, competitorpartnum. Can this be done via code?