如何在没有 A1 符号的情况下引用单元格?

发布于 2024-11-02 05:27:25 字数 249 浏览 0 评论 0原文

在我的 Access VBA 中,我有超链接,它使用以下方式链接到单元格:

oSheet.Cells(1, i).Formula = "=HYPERLINK(""#Sheet2!E6"", """ & !TestCase & """)"

但是,我想使用 row,col 表示法,而不是 E6,因为我所有的内部应用程序逻辑都使用 Cells /行/列。

谢谢。

In my Access VBA I have hyperlink, which is using the following way to link to cell:

oSheet.Cells(1, i).Formula = "=HYPERLINK(""#Sheet2!E6"", """ & !TestCase & """)"

However, instead of E6, I want to use row,col notation, since all my internal application logic is using Cells/rows/cols.

Thanks.

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

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

发布评论

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

评论(1

倾城泪 2024-11-09 05:27:25

使用 FormulaR1C1(行/列格式)代替公式

以下是两个示例:

将单元格的公式设置为 =$B$1 :

oSheet.Cells(1, i).FormulaR1C1 = "=R1C2"

将A1的公式设置为=C2,A2设置为=C3等:

Range("A1:A10").FormulaR1C1 = "=R[1]C[2]"

Instead of Formulause FormulaR1C1(Row / Column format)

Here are two examples:

Set the formula of your cells to =$B$1 :

oSheet.Cells(1, i).FormulaR1C1 = "=R1C2"

Set the formula of A1 to =C2, A2 to =C3 etc.:

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