在 vb/vba 上。将变量作为参数传递给对象属性(如 .rows)

发布于 2024-11-06 12:43:45 字数 221 浏览 1 评论 0原文

我想使用下面的代码,但它不允许我出现错误:“预期:列表分隔符或)”:

a = 1: b = 13
activesheet.rows(a:b)

为什么我不能将 a 和 b 变量传递给属性,例如: activesheet.rows("1:3").- 当我使用“a:b”格式时,它会给出“运行时错误 1004”应用程序定义或对象定义错误。

I want to use the following piece of code but it won't let me, the error: "expected: list separator or )":

a = 1: b = 13
activesheet.rows(a:b)

why can't I pass the a and b variables to the property like for example: activesheet.rows("1:3").- when I use the "a:b" format it gives me "run-time error 1004" application defined ot object defined error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

扭转时空 2024-11-13 12:43:45

您需要创建一个包含 ab 值的字符串。

ActiveSheet.Rows(CStr(a) & ":" & CStr(b))

You need to create a string containing the values of a and b.

ActiveSheet.Rows(CStr(a) & ":" & CStr(b))
纵性 2024-11-13 12:43:45

您需要使用 Range 方法:

ActiveSheet.Range(ActiveSheet.Rows(a), ActiveSheet.Rows(b))

You need to use the Range method:

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