如何使用vba 函数在excel中插入新行自动复制公式?

2024-12-16 21:18:34
推荐回答(2个)
回答1:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 2 Then
r = Target.Row
For c1 = 9 To 19
Cells(3, c1).Copy
Cells(r, c1).PasteSpecial
Next c1
Application.CutCopyMode = False
Cells(r, 2).Select
End If
End Sub
就可以了,你试试看

回答2:

if range("b" & i).value <> "" then
复制。。。。

end if

能看明白吗?