使用VBA,如何根据Excel表格中的特定列填充ComboBox值
我正在尝试使用 VBA 构建这个复杂的表单以将新行添加到现有表中。 我想要这个组合框列出表的一列中已经存在的值。
我是 VBA 新手。我尝试了一些范围/选择和排序组合,到目前为止不乏......
Using VBA, I'm trying to build this sophisticated form to add new rows to an existing table.
I want to have this ComboBox that will list the values already exists in the one of the table's column.
I'm new to VBA. and I tried some Range/Selection and sort combinations with no lack so far...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是您正在寻找的内容..它应该可以帮助您开始,只需根据您的需要调整工作表和范围即可。
*编辑:*克里斯是对的,我原来的代码有错误。在上班路上发布的答案没有时间检查。上面的代码工作正常。 Chris 建议仅使用 .value 来填充会更快。老实说,我不知道你可以这样做。
Here's what you're looking for.. It should get you started, Just adapt the Sheets and Range to your needs.
*EDITED:*Chris is right, my original code had errors. Posted answer on way to work didn't have time to check. The code above works fine. Chris suggestion on just using .value to fill is quicker. I honestly didn't know you could do it like that.
您需要创建表格列范围,
您可以在范围内插入行
或者您需要首先向表中添加行并调整范围大小
并将该范围传递给 SetRng 参数,
userFormName 是用户表单名称,
ControlName 是组合框名称
you need to create your table column range,
Either you can insert your row in side the range
Or you need to first add row to table and resize your range
and pass that range pass to SetRng parameter,
userFormName is user form name,
ControlName is combobox name