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

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

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

HighPeriod是一个整数。 是否有可能使用整数范围的两个值。

看起来你的代码有一个错字,你可能想用下面的方法testing:

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

要么

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

如果你确定其余的话。