like many here, im new to access, and i have set up a form that auto-populates two fields.
the "part number" combo box shows three things, Part number, Stack size, and Cut size.
upon choosing the part number, stack size and cut size should be automatically filled.
Stack size works great, although, cut size always has the value 0, regardless of what should be there.
below is the code im using:
Private Sub txtpart_number_afterupdate()
Me.txtStack_Size = Me.txtPart_Number.Column(1) + 2
Me.txtCut_Size = Me.txtPart_Number.Column(2)
End Sub
help please, i don't know why this is happening.![]()