Excel VBA Selection.Copy不再有效

时间:2012-11-29 22:16:21

标签: excel-vba selection vba excel

我从这段代码中得到一个“编译错误:预期的函数或变量”

Cells(3, 2).Select
ActiveCell.FormulaR1C1 = Formula 'Inserts formula
'Copies formula across the row
Cells(3, 2).Copy
Range(Cells(3, 2), Cells(3, 10)).PasteSpecial xlPasteFormulas 
Range(Cells(3, 2), Cells(3, 10)).Select
'Copies the formula down to end of list
selection.Copy '<---- Here it says it can't compile
Range(selection, selection.End(xlDown)).FillDown

在此处使用“selection”会出现错误,但在另一个工作簿中有效。我正在尝试将公式插入单元格,将其复制到一个范围内,然后填充到数据块的末尾。我如何让它再次运作?或者,是否有另一种方法可以使用公式填充一系列单元格(这通常会更改为变量。)

感谢您的帮助,
塞缪尔史密斯

0 个答案:

没有答案