在 VBA 中获取下拉列表值并获取下拉列表的名称...无处可寻?
我通过将组合框从用户窗体工具栏拖动到工作表上来创建一个下拉列表。我从书中的一些单元格中为其分配了一些值。现在我想要一些 VBA 代码以字符串的形式访问所选下拉项的值。
我的下拉列表仅包含文本。
另外,我如何找到这个新创建的下拉列表的名称(它不在属性中!)?
I created a dropdown by dragging the combo box onto my sheet from the UserForm toolbar. I assigned some values to it from some cells in the book. Now I want some VBA code to access the selected dropdown item's value in the form of a string.
My dropdown contains only text.
Also how do I find the name of this newly created dropdown (it's nowhere in the properties!)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
注意:
DropDown 不是一个可见的类。你
只要使用它就可以了。
查找下拉列表的名称
CONTROL(不是用户表单)只需看看
屏幕左上角的名称框,位于 A 列上方。
它表示控件的名称
您右键单击您的控件。-
Sheet2 是下拉列表所在的位置
人口稠密。所以无论您的列表数据在哪里
是。
希望对大家有所帮助。
NOTES:
DropDown is not a visible class. You
just use it and it works.
To find the name of the dropdown
CONTROL (not userform) just look at
the name box in the top left corner of your screen just above column A.
It says the name of the control when
you right click on your control.-
Sheet2 is where the dropdown list is
populated. So wherever your list data
is.
Hope that helps you all.
以下是无需知道名称即可获取字符串的方法:
Here's how you get the String without needing to know the name:
这是一种笨拙的方法,但它应该可行:
Worksheet
对象还有一个隐藏的DropDowns
集合成员,您可以对其进行迭代。这将找到从Forms
工具栏插入的项目,但不会找到从Control Toolbox
工具栏插入的项目This is a clunky way of doing it but it should work:
There is also a hidden
DropDowns
collection member of theWorksheet
object that you could iterate over. This will find items inserted from theForms
toolbar but won't find items inserted from theControl Toolbox
toolbar兰斯·罗伯茨就快到了。如果您不知道调用子菜单的下拉菜单的名称,请使用它:
我使用它为具有许多下拉菜单的表单创建通用子菜单。
Lance Roberts was almost there. If you don't know the name of the drop down that calls the sub, use this:
I used this to create a generic sub for a form with many drop downs.