AddItem not populating options in combo box
问题 I have the following form. I've added each item as per .AddItem "" , however they are not populating in the combobox in the userform. (This is in a separate module referring to the userform) Code With frmForm .txtFirst.Value = "" .txtLast.Value = "" .txtYear.Value = "" .cmbSchool.Clear .cmbSchool.AddItem "Harvard" .cmbSchool.AddItem "Northwestern" .cmbSchool.AddItem "UCBerkley" .cmbSchool.AddItem "Stanford" .cmbSchool.AddItem "NYU" .cmbSchool.AddItem "UoT" .cmbSchool.AddItem "UBC" .cmbSchool