Excel VBA UserForm Combobox Create New Row with AddItem and Specify its Row Number

Опубликовано: 05 Август 2026
на канале: InAnOffice
1,184
3

Excel VBA UserForm Combobox Learn how to create new row with AddItem and specify its row number.

The source code used in this video:

Private Sub UserForm_Initialize()
With cbDays
.AddItem "Monday"
.AddItem "Tuesday"
.AddItem "Wednesday", 0
End With
End Sub