gpt4 book ai didi

VBA ActiveWorkbook/RefersToLocal - 1004 应用程序定义或对象定义错误

转载 作者:行者123 更新时间:2023-12-02 03:00:50 25 4
gpt4 key购买 nike

执行以下行时,抛出1004运行时错误(应用程序定义或对象定义错误)

rangeString = ActiveWorkbook.Names.Item("MyTableName").RefersToLocal

我看不出我的代码有任何问题,并且表名称似乎是正确的。这段代码位于类模块内,我不是 vba 专家,所以我不知道这是否会引入范围等方面的任何问题。

最佳答案

如果您的对象(MyTableName)是 Excel 数据表,请使用 ListObject 使用的 Range,例如

Sub test()
Dim L As ListObject

Set L = ActiveSheet.ListObjects("MyTableName")
' at this point you can inspect the properties of L in the debugger

' retrieve the local address of tue underlying range
Debug.Print L.Range.AddressLocal

End Sub

关于VBA ActiveWorkbook/RefersToLocal - 1004 应用程序定义或对象定义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25260262/

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