在 VBA 中获取下拉列表值并获取下拉列表的名称...无处可寻?

发布于 2024-09-25 15:17:12 字数 151 浏览 6 评论 0原文

我通过将组合框从用户窗体工具栏拖动到工作表上来创建一个下拉列表。我从书中的一些单元格中为其分配了一些值。现在我想要一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

热风软妹 2024-10-02 15:17:12
Dim dd As DropDown
Set dd = ActiveSheet.DropDowns("Drop Down 6") 
Set r = Sheet2.Range(dd.ListFillRange)

Set ddValue = r(dd.Value)

注意:

  • DropDown 不是一个可见的类。你
    只要使用它就可以了。

  • 查找下拉列表的名称
    CONTROL(不是用户表单)只需看看
    屏幕左上角的名称框,位于 A 列上方。
    它表示控件的名称
    您右键单击您的控件。-

  • Sheet2 是下拉列表所在的位置
    人口稠密。所以无论您的列表数据在哪里
    是。

    希望对大家有所帮助。

Dim dd As DropDown
Set dd = ActiveSheet.DropDowns("Drop Down 6") 
Set r = Sheet2.Range(dd.ListFillRange)

Set ddValue = r(dd.Value)

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.

莳間冲淡了誓言ζ 2024-10-02 15:17:12

以下是无需知道名称即可获取字符串的方法:

Dim DD As Shape

Set DD = ActiveSheet.Shapes(Application.Caller)

MsgBox DD.ControlFormat.List(DD.ControlFormat.ListIndex)

Here's how you get the String without needing to know the name:

Dim DD As Shape

Set DD = ActiveSheet.Shapes(Application.Caller)

MsgBox DD.ControlFormat.List(DD.ControlFormat.ListIndex)
凉栀 2024-10-02 15:17:12

这是一种笨拙的方法,但它应该可行:

Dim o As Object

For Each o In Worksheets("Sheet1").Shapes
    MsgBox o.Name
Next o

Worksheet 对象还有一个隐藏的 DropDowns 集合成员,您可以对其进行迭代。这将找到从 Forms 工具栏插入的项目,但不会找到从 Control Toolbox 工具栏插入的项目

This is a clunky way of doing it but it should work:

Dim o As Object

For Each o In Worksheets("Sheet1").Shapes
    MsgBox o.Name
Next o

There is also a hidden DropDowns collection member of the Worksheet object that you could iterate over. This will find items inserted from the Forms toolbar but won't find items inserted from the Control Toolbox toolbar

小清晰的声音 2024-10-02 15:17:12

兰斯·罗伯茨就快到了。如果您不知道调用子菜单的下拉菜单的名称,请使用它:

Dim dd as DropDown
Set dd=ActiveSheet.Shapes(Application.Caller).OLEFOrmat.Object

Dim ddVal as String
ddVal=dd.List(dd.ListIndex)

我使用它为具有许多下拉菜单的表单创建通用子菜单。

Lance Roberts was almost there. If you don't know the name of the drop down that calls the sub, use this:

Dim dd as DropDown
Set dd=ActiveSheet.Shapes(Application.Caller).OLEFOrmat.Object

Dim ddVal as String
ddVal=dd.List(dd.ListIndex)

I used this to create a generic sub for a form with many drop downs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文