我正在尝试使用 R1C1 引用在 Excel VBA 中使用动态范围自动填充公式。
而不是使用这样的东西:
Sheets("my_sheet").Range("A2").AutoFill Destination:=Range("A2:A:"&row_count), Type:=xlFillDefault
我写了以下内容:
Sheets("my_sheet").Cells(2, 17).AutoFill Destination:=Sheets("my_sheet").Range(Cells(3, 17), Cells(row_count, 17)), Type:=xlFillDefault
这似乎不起作用并返回以下内容:
Run-time error '1004':
AutoFill method of Range class failed.
有什么建议么?