Values not auto-populating form

Damian37

Active Member
Joined
Jun 9, 2014
Messages
301
Office Version
  1. 365
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.

 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
How are you populating the combobox?
 
Upvote 0
How are you populating the combobox?
Hi Fluff,

I'm not trying to populate a combobox. It's a list view, and when I choose column 0, it populates my text box with the SKU number, but when I try to move over one column to the right in order to bring in the description, I'm receiving a blank result instead of the value within the column.
 
Upvote 0
I've never used ListView, but from what I've found you cannot use .column with listview.
So I'm afraid I'm unable to help any further.
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,939
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top