如何使用常量作为范围索引

时间:2014-12-02 00:37:24

标签: vba range constants variable-assignment

我想使用这个构造

Option Explicit

Public Const CellLocation As String = "5, 7"

... .

data = range1(CellLocation ).Value

我的代码适用于     data = range1(5,7).Value

但不是     data = range1(CellLocation).Value

如何将单元格位置指定为常量

1 个答案:

答案 0 :(得分:0)

不确定但是你不能在这里使用“偏移”。

Set CellLocation = Cells(5,7)