Wie fülle ich ein Kombinationsfeld mit den angegebenen Daten in der geöffneten Arbeitsmappe?
Normalerweise können Sie ein Kombinationsfeld (ActiveX Control) mit einem bestimmten Bereich von Zellendaten füllen, indem Sie die Zellreferenzen in das Feld ListFillRange der Eigenschaften des Kombinationsfelds eingeben. Wenn Sie ein Kombinationsfeld direkt mit den angegebenen Daten füllen möchten, ohne deren Eigenschaften manuell anzugeben, kann Ihnen die Methode in diesem Artikel helfen.
Füllen Sie ein Kombinationsfeld mit den angegebenen Daten mit VBA-Code
Füllen Sie ein Kombinationsfeld mit den angegebenen Daten mit VBA-Code
Mit dieser Methode können Sie ein Kombinationsfeld mit den angegebenen Daten direkt in der geöffneten Arbeitsmappe füllen. Bitte gehen Sie wie folgt vor.
1. Drücken Sie die Taste Andere + F11 Tasten gleichzeitig zum Öffnen der Microsoft Visual Basic für Applikationen Fenster.
2. In dem Microsoft Visual Basic für Applikationen Fenster, doppelklicken Sie DiesesWorkbook im linken Bereich zum Öffnen der DiesesWorkbook Code-Editor. Und dann kopieren Sie den folgenden VBA-Code hinein. Siehe Screenshot:
VBA-Code: Füllen Sie ein Kombinationsfeld mit den angegebenen Daten in der geöffneten Arbeitsmappe aus
Private Sub Workbook_Open()
'Updated by Extendoffice 2018/1/30
With Sheet1.ComboBox1
.Clear
.AddItem "Select a Fruit"
.AddItem "Apple"
.AddItem "Banana"
.AddItem "Peach"
.AddItem "Pineapple"
.AddItem "Watermelon"
.Text = .List(0)
End With
End Sub

Notes:
1). ComboBox1 is the name of the combo box you will fill data, and this combo box locates in Sheet1. Please change them as you need.
2). And replace the data in the code with your needed one.
3. Save the workbook as Excel Macro-Enabled Workbook format and close it.
4. Reopen the workbook, you will see the combo box has been populated with specified data as below screenshot:

Related articles:
- How to copy Combo Box value to active cell in Excel?
- How to display date format in combo box output in Excel?
- How to prevent or disable typing in a combo box in Excel?
- How to populate Combo Box with data of Named Range in Excel?
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office / Excel 2007-2021 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!