I have a Combo Box on a User Form with the following items. But I want to put these items in a named range list on sheet2, called "Items" because there will be many more items added. How do I change the code so it pulls from that list instead of writing it here?
With cboDescriptions
.AddItem "apples"
.AddItem "pears"
.AddItem "peaches"
.AddItem "oranges"
.AddItem "grapes"
End With
cboDescriptions.Value =
With cboDescriptions
.AddItem "apples"
.AddItem "pears"
.AddItem "peaches"
.AddItem "oranges"
.AddItem "grapes"
End With
cboDescriptions.Value =