还有其他写范围的方法吗

发布于 2024-07-24 14:20:33 字数 179 浏览 6 评论 0原文

嗨,例如,我必须在我的公式中写下这个,

  Sheet1!A1:HM232

还有其他写法吗(例如仅使用数字,不使用任何字母),

  Sheet1!Cells[1,1]:Cells[232,221]

提前致谢!

hi for example i have to write this in my formula

  Sheet1!A1:HM232

is there any other way of writing this (for example using only numbers, without any letters)

  Sheet1!Cells[1,1]:Cells[232,221]

thanks in advance!

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

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

发布评论

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

评论(2

相思碎 2024-07-31 14:20:33

是的。 在 Excel 参数中切换到 R1C1 表示法。

Yes. Switch to R1C1 notation in Excel parameters.

爺獨霸怡葒院 2024-07-31 14:20:33

在 VBA 中,您可以像这样引用:

Set R = Sheets("Sheet1").Range(Cells(1, 1), Cells(232, 231))

在工作表中,您可以使用以下公式,该公式只需要您具有初始单元格引用(作为“A1”样式引用):

=SUM(OFFSET(A1,0,0,232,221))

In VBA you can reference like so:

Set R = Sheets("Sheet1").Range(Cells(1, 1), Cells(232, 231))

In a Worksheet you can use the following formula which just requires you to have the initial cell reference (as an 'A1' style reference):

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