Pro tip: Populate an Excel UserForm combo box without VBA Your email has been sent Susan Harkins shows you two easy ways to populate an Excel UserForm, and neither requires a single bit of VBA code.
Populate a userform combo box in Excel with a dynamic list Your email has been sent Populating a combo box isn't hard, but getting the combo box to communicate with a constantly changing list is a ...
How to fill out the first list? To fill a combo box with the contents of a named range of the workbook, the syntax is: ComboBox1.List = Application.Transpose (Range ("monNom")) To clear the ComboBox: ...