如何在打开的工作簿上用指定的数据填充组合框?
通常,可以通过将单元格引用输入到组合框属性的ListFillRange字段中,以一定范围的单元格数据填充组合框(ActiveX控件)。 如果要直接用指定的数据填充组合框而不用手动指定其属性,本文中的方法可以为您提供帮助。
使用VBA代码填充具有指定数据的组合框
使用VBA代码填充具有指定数据的组合框
惊人的! 在 Excel 中使用高效的选项卡,如 Chrome、Firefox 和 Safari!
每天节省50%的时间,并减少数千次鼠标单击!
此方法可以帮助您在打开工作簿时直接用指定的数据填充组合框。 请执行以下操作。
1。 按 其他 + F11 同时打开 Microsoft Visual Basic应用程序 窗口。
2.在 Microsoft Visual Basic应用程序 窗口,双击 的ThisWorkbook 在左窗格中打开 的ThisWorkbook 代码编辑器。 然后将下面的VBA代码复制到其中。 看截图:
VBA代码:在打开的工作簿上用指定的数据填充一个组合框
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?
Best Office Productivity Tools
Transform Hours into Minutes with Kutools for Excel!
Ready to supercharge your Excel tasks? Harness the power of Kutools for Excel - your ultimate time-saving tool. Streamline intricate tasks and glide through your data like a pro. Experience Excel at lightning speed!
Why You Need Kutools for Excel
🛠️ Over 300 Powerful Features: Kutools is packed with more than 300 advanced features, simplifying your work in over 1500 scenarios.
📈 Superior Data Processing: Merge cells, remove duplicates, and perform advanced data conversions – all without breaking a sweat!
⏱️ Efficient Batch Operations: Why put in extra effort when you can work smart? Import, export, combine, and tweak data in bulk with ease.
📊 Customizable Charts and Reports: Access a broad variety of additional charts and generate insightful reports that tell a story.
🗄️ Powerful Navigation Pane: Gain an advantage with the robust Column Manager, Worksheet Manager, and Custom Favorites.
📝 Seven Types of Drop-down Lists: Make data entry a breeze with drop-down lists of various features and types.
🎓 User-Friendly: A breeze for beginners and a powerful tool for experts.
Download Now and Soar Through Time with Excel!
Read More... Free Download... Purchase...
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!
Read More... Free Download... Purchase...
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。