Set ComboBox RowSource to Excel Spreadsheet UserForm Control EpicDan May 11th 2017 Re: Set ComboBox RowSource to Excel Spreadsheet UserForm ControlI think I may have misread the question...
Set ComboBox RowSource to Excel Spreadsheet UserForm Control EpicDan May 11th 2017 Re: Set ComboBox RowSource to Excel Spreadsheet UserForm ControlTry This..This code Populates the ComboBox with Data that is listed in A1 to A8 in Sheet 1 Code Private Sub UserForm_Initialize() With ComboBox1 .List = Sheets(1).Range("A1:A8").Value End With End Sub