I have a form which loads a recordset.
Within each row I want a combo box which is loaded by values from another table filtered by a value from a column on that row.
I have set the Row Source of the combo box to
expecting it to pull the Part_id from the current row.
However, every combo box is filtered by the value of the first row.
Within each row I want a combo box which is loaded by values from another table filtered by a value from a column on that row.
I have set the Row Source of the combo box to
Code:
SELECT tblTempVIC.icID, tblTempVIC.description FROM tblTempVIC WHERE (((tblTempVIC.part_id)=Forms!frmPartInput1!Part_id)) ;
However, every combo box is filtered by the value of the first row.
Comment