Hello all,
I'm trying to get a field within my form to auto-populate, but it's failing, and I don't know why. I need a product description to be pulled from the data, and unfortunately nothing's happening.
As a SCSD Employee, when I select a Product SKU, I need the Product Description to auto populate in the form.
VBA Code (Current)
<code>
Private Sub cboSKUID_Change()
Me.txtPRODUCTNAME.Value = Me.cboSKUID.Column(1)
End Sub
</code>
As always, any help is greatly appreciated.
I'm trying to get a field within my form to auto-populate, but it's failing, and I don't know why. I need a product description to be pulled from the data, and unfortunately nothing's happening.
As a SCSD Employee, when I select a Product SKU, I need the Product Description to auto populate in the form.
VBA Code (Current)
<code>
Private Sub cboSKUID_Change()
Me.txtPRODUCTNAME.Value = Me.cboSKUID.Column(1)
End Sub
</code>
As always, any help is greatly appreciated.