Syntax for control source in combo box control

  • Thread starter Thread starter dhstein
  • Start date Start date
D

dhstein

What is the Syntax for control source in combo box control?

Sheets(???).Range("a2:a100") ?
 
On a userform?

me.combobox1.controlsource _
= worksheets("sheet1").range("A1").address(external:=true)

but you may have meant .rowsource???

me.combobox1.rowsource _
= worksheets("sheet1").range("A2:a100").address(external:=true)
 
Back
Top