1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12:
Private Sub UserForm_Initialize() Me.lbHoldings.Clear With Me.lbHoldings .Clear .AddItem "US" .AddItem "Canada" .AddItem "Mexico" .AddItem "UK" End With End Sub
Something like to code below.
You need to enable Microsoft Excel Object library in your VBE references (Tools > References)
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17:
Private Sub CommandButton1_Click() Dim AppXL As Excel.Application Set AppXL = GetObject(, "Excel.Application") 'OR 'set appXl=GetObject("Full Path and Name to Excel File") Dim rngItem As Range lbHoldings.Clear For Each rngItem In AppXL.Range("MyRange") lbHoldings.AddItem (rngItem.Text) Next rngItem Set AppXL = Nothing End Sub