使特定单元格不自动填充表格

时间:2017-06-30 07:14:02

标签: excel vba

说我有一张桌子。我可以使用代码插入一个不会复制到表中其他单元格的公式,因为插入时AutoFillFormulasInLists为false。

Application.AutoCorrect.AutoFillFormulasInLists = False

Range("A6").Formula = "=SUM(R[1]C:R[5]C)"

Application.AutoCorrect.AutoFillFormulasInLists = True

问题在于,如果有人点击单元格并在电子表格中按Enter键,则公式会将自身复制到列中的其他单元格,因为AutoFillFormulasInLists现在为true。

有没有人知道如何让单个单元格在交互时不将自身复制到列中的每个其他单元格?

0 个答案:

没有答案