热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

插入新行并复制公式-Insertnewrowandcopyformula

IhavethistableinExcel:我有一张Excel表格:andIhavethefollowingformulaincolumnN:第N列有如下公式:

I have this table in Excel:

我有一张Excel表格:

enter image description here

and I have the following formula in column N:

第N列有如下公式:

enter image description here

Under the button named Adauga, I have a subroutine that adds new rows before row 5:

在名为Adauga的按钮下,我有一个在第5行之前添加新行的子例程:

Sub Button3_Click()

    Sheets("Sheet1").Range("A5").Select
    ActiveCell.EntireRow.Insert Shift:=xlDown

End Sub

But the formula does not copy into the new row. How can I modify my code to copy the formula also? I tried some methods but I ended up copying the values also. It is important that the row inserts before row 5.

但是这个公式不会复制到新的行中。如何修改代码以复制公式?我尝试了一些方法,但最后也复制了这些值。第5行之前的行插入是很重要的。

1 个解决方案

#1


1  

Excel doesn't maintain the formulas being used unless you set up a table. So you'll just need to add an extra step to your process:

Excel不会维护使用的公式,除非您设置了一个表。所以你只需要在你的过程中增加一个额外的步骤:

Sub Button3_Click()

    With Sheets("Sheet1")
        .Rows("5").Insert xlDown, xlFormatFromLeftOrAbove
        .Range("N5").FillDown
    End With

End Sub

This will insert a row at row 5 and then just copy the formula from above.

这将在第5行插入一行,然后从上面复制公式。


推荐阅读
author-avatar
十分风格的功夫_723
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有