使用Excel VBA定义新单元格时出错

时间:2012-04-24 03:41:17

标签: excel vba excel-vba

如果从未使用过cell(10,1),我尝试执行以下代码时会出错。

Dim targetCell As Range
targetCell = Cells(10, 1)

谁能告诉我为什么?

1 个答案:

答案 0 :(得分:1)

我几天前刚开始阅读VBA书(这可能是错的):

Set targetCell = Cells(10, 1)