gpt4 book ai didi

vba - 组合框项目单元格地址

转载 作者:行者123 更新时间:2023-12-04 20:55:33 26 4
gpt4 key购买 nike

我正在使用组合框(ActiveX)并从另一张表中获取列表值。

我想知道是否可以获得所选项目的单元格地址?

最佳答案

是的。你可以尝试这样的事情。

Dim r As Range
With Sheet1.ComboBox1 '/* Sheet1 is where the ComboBox is */
Set r = Evaluate(.ListFillRange)
Debug.Print r.Item(.ListIndex + 1).Address
End With

要在您的情况下实现它(如评论中所述),您可以尝试:
'/* will give you the value right next to the selected value's source cell */
Debug.Print r.Item(.ListIndex + 1).Offser(, 1).Value2

关于vba - 组合框项目单元格地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48537825/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com