在 vb/vba 上。将变量作为参数传递给对象属性(如 .rows)
我想使用下面的代码,但它不允许我出现错误:“预期:列表分隔符或)”:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建一个包含
a
和b
值的字符串。You need to create a string containing the values of
a
andb
.您需要使用 Range 方法:
You need to use the Range method: