Hello,
What I’m trying to do is utilize a ComboBox in a userform to populate a certain cell.
Here is the code I have for the ComboBox:
Private Sub ComboBox1_Enter()
ComboBox1.List() = Range(“R1:R49”).Value
End Sub
As you can see, I’m populating the data in the combobox from data in column R. I can select what I desire, so I’m good so far. What I need to happen is for whatever selection is made to be populated in another cell (for example purposes, let’s use A1). After it’s populated, I need the userform to go away. I can figure that out…I just haven’t got that far yet.
Thanks for any advice. It is much appreciated.
I’m using Excel 2007