Userform combobox question

  • Thread starter Thread starter teepee
  • Start date Start date
Maybe you assigned the rowsource to the combobox.

You could either remove that assignment in the properties window for that
combobox (while you're in the VBE).

Or you could clean it up in code:

Add a single line right after the with statement:

With Me.ComboBox1
.RowSource = ""


Bingo. It works. I'm enormously grateful.
 
Back
Top