In advance, forgive me =) My database tracks equipment quality assurance inspections. Each piece of equipment has a unique ID as well as a part number, serial number, and a noun. Equipment information is stored in Tbl1 (information changes regularly). The inspection results are stored in Tbl2. Tbl2 data is viewed via Form1 which imports equipment info from Tbl1 and stores it in Tbl2. Currently, Form1 contains a ComboBox for the unique ID (from Tbl1) which then updates the part number field (also Tbl1) via After Update VBA. The problem is, I want the After Update code to update part number, serial number, and noun but can only get it to update the part number field. Help? My current code is as follows
rivate Sub ID_AfterUpdate()
Me.PN = Me.ID.Column(1)
Me.SN = Me.ID.Column(2)
Me.Noun = Me.ID.Column(3)
End Sub
Me.PN = Me.ID.Column(1)
Me.SN = Me.ID.Column(2)
Me.Noun = Me.ID.Column(3)
End Sub