如何在没有 A1 符号的情况下引用单元格?
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
FormulaR1C1
(行/列格式)代替公式
,以下是两个示例:
将单元格的公式设置为
=$B$1
:将A1的公式设置为
=C2
,A2设置为=C3
等:Instead of
Formula
useFormulaR1C1
(Row / Column format)Here are two examples:
Set the formula of your cells to
=$B$1
:Set the formula of A1 to
=C2
, A2 to=C3
etc.: