Code to place an item as the first index in a combobox (vba)

kelly mort

Well-known Member
Joined
Apr 10, 2017
Messages
2,169
Office Version
  1. 2016
Platform
  1. Windows
Hello world,
I want to do something very simple and cool but it seems a bit complicated to me atm.

So this is the code I have currently:
Code:
Private Sub UserForm_Initialize()
   Dim r As Range
   Dim rng As Range
   Dim lr As Long
   Dim dic As Object
   Dim sh As Object
   
   ComboBox1.Clear
   Set sh = Sheets("DATA")
   Set dic = CreateObject("Scripting.Dictionary")
   
   lr = sh.Cells(Rows.Count, "A").End(xlUp).Row
   Set rng = sh.Range("A1:A" & lr)
   
   For Each r In rng
       dic.Item(r.Value) = Empty
   Next r
   
   ‘ComboBox1.AddItem "First Item"
   ComboBox1.List = dic.keys
   
End Sub

I want to place the “First Item” first.
But it’s not working.
What should I do to get it done?

Thanks in advance
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try:

Rich (BB code):
Private Sub UserForm_Initialize()
   Dim r As Range
   Dim rng As Range
   Dim lr As Long
   Dim dic As Object
   Dim sh As Object
   
   ComboBox1.Clear
   Set sh = Sheets("DATA")
   Set dic = CreateObject("Scripting.Dictionary")
   
   lr = sh.Cells(Rows.Count, "A").End(xlUp).Row
   Set rng = sh.Range("A1:A" & lr)
   
   dic.Item("First Item") = Empty
   For Each r In rng
       dic.Item(r.Value) = Empty
   Next r
   
   ComboBox1.List = dic.keys
   
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,425
Messages
6,124,826
Members
449,190
Latest member
rscraig11

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