体验零代码搭建

如何在打开的工作簿上用指定的数据填充组合框?

网友投稿  ·  2023-10-31 10:10  ·  在线excel  ·  阅读 412


Excel是许多职场人士常用的烦恼之源,学习相关技巧需耗费大量时间。简道云作为一款办公神器,能很好地替代Excel。它是一个在线表单和数据管理工具,支持PC端和手机微信浏览器操作。除此之外,简道云还能辅助企业进行流程审批、财务报销、人事管理等业务管理,满足不同需求。

如何在打开的工作簿上用指定的数据填充组合框?

通常,可以通过将单元格引用输入到组合框属性的ListFillRange字段中,以一定范围的单元格数据填充组合框(ActiveX控件)。 如果要直接用指定的数据填充组合框而不用手动指定其属性,本文中的方法可以为您提供帮助。

如何在打开的工作簿上用指定的数据填充组合框?

通常,可以通过将单元格引用输入到组合框属性的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
Copy
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...


excel怎么制作个人账本 excel账本的详细制作教程 << 上一篇
2023-10-31 10:10
excel怎么制作体彩的走势图 excel自动查看体彩走势的教程
2023-10-31 10:10
下一篇 >>

相关推荐