excel vba Populating a combobox on a userform from a range of cells

The solution for “excel vba Populating a combobox on a userform from a range of cells” can be found here. The following code will assist you in solving the problem.

Private Sub UserForm_Initialize()
ComboBox1.List = [Sheet1!A1:A10].Value
End Sub

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts