When I run the following code the values in the called sheet populate into the list box. However, when I try to click them on the user form sheet, the values disappear and I get a blank box. Can anybody help? Thanks!
Code:
Private Sub Product_Change()
Application.EnableEvents = False
Product.Clear
Application.EnableEvents = True
Select Case BusinessChannel.Value
Case "Stores"
Product.List = Sheets(4).Range("C1:C3477").Value
Case "Dealers"
Product.List = Sheets(5).Range("C1:C34").Value
Case "National Accounts"
Product.AddItem "Please enter product in adjacent cell."
End Select
End Sub