公式拖动查询

时间:2018-06-04 11:27:42

标签: vba excel-vba excel

我正在尝试使用以下代码将公式从范围拖到下一个立即列

Range(Cells(11, lc2), Cells(70, lc2)).AutoFill _
Destination:=Range(Cells(11, lc2 + 1), Cells(70, lc2 + 1)), Type:=xlFillDefault

我正面临1004错误

请告知

1 个答案:

答案 0 :(得分:5)

您正在使用的列lc2必须包含在目的地中,例如

Range(Cells(11, lc2), Cells(70, lc2)).AutoFill _
Destination:=Range(Cells(11, lc2), Cells(70, lc2 + 1)), Type:=xlFillDefault

意味着您无法仅使用列lc2+1

自动填充