VBA - 对象'_Global'的方法'范围'失败

时间:2015-02-04 10:46:28

标签: excel vba excel-vba

我在这一行得到了这个错误

Selection.AutoFill Destination:=Range("BT & HighPeriod, :BT" & lastRow), _
    Type:=xlFillDefault

HighPeriod是一个整数。是否可以在Range的两个值中使用整数。

1 个答案:

答案 0 :(得分:2)

您的代码中似乎存在拼写错误,您可能需要测试:

Selection.AutoFill Destination:=Range("BT" & HighPeriod & ":BT" & lastRow), Type:=xlFillDefault

Selection.AutoFill Destination:=Range("BT" & HighPeriod, "BT" & lastRow), Type:=xlFillDefault

如果您确定其余部分。