VBA: How To Reference ComboBox Object

后端 未结 1 1952
日久生厌
日久生厌 2021-01-06 12:04

I have created a lone ComboBox on the first worksheet in Excel. However, I can\'t find a way to reference its object.

I inserted a module, and one of my subs can su

相关标签:
1条回答
  • 2021-01-06 12:48

    That depends on the type of combo box that you created:

    • Form Control: Sheets("Sheet1").DropDowns(1)
    • ActiveX Control: Sheets("Sheet1").ComboBox1

    Sheets("Sheet1"). can be omitted if the code is placed inside the VBA module Sheet1.

    Also see What is the difference between "Form Controls" and "ActiveX Control" in Excel 2010?

    0 讨论(0)
提交回复
热议问题