K
kidpoker
Guest
I have three tables
the 1st table contains workorder information for a part #. The part # is stored on a 2nd table with a unique ID assigned to each part #. The 3rd table contains setup information for each part number.
so essentially the 3 tables all have a relationship using UNIQUE_PARTID
Work Order Table Part Details Table Setup Info Table
UNIQUE_PARTID UNIQUE_PARTID UNIQUE_PARTID
PARTDESCRIPTION
What I want is the forms for both the Word Order Table and the Setup Info table to display a combo box that allows the user to choose the Part by its description and allows adding a new part description which will then update the Part Details Table with a new row,
I have somewhat gotten this to work, however the PARTDESCRIPTION must be unique. Whenever I type in a part on either form the Autonumber keeps generating a new row even if the PARTDESCRIPTION is already contained in the Part Details table.
the 1st table contains workorder information for a part #. The part # is stored on a 2nd table with a unique ID assigned to each part #. The 3rd table contains setup information for each part number.
so essentially the 3 tables all have a relationship using UNIQUE_PARTID
Work Order Table Part Details Table Setup Info Table
UNIQUE_PARTID UNIQUE_PARTID UNIQUE_PARTID
PARTDESCRIPTION
What I want is the forms for both the Word Order Table and the Setup Info table to display a combo box that allows the user to choose the Part by its description and allows adding a new part description which will then update the Part Details Table with a new row,
I have somewhat gotten this to work, however the PARTDESCRIPTION must be unique. Whenever I type in a part on either form the Autonumber keeps generating a new row even if the PARTDESCRIPTION is already contained in the Part Details table.