标签: excel vba ms-office
我想在excel中创建一个宏,当我到达某个单元格时添加一行。 任何帮助赞赏
答案 0 :(得分:3)
您可以将以下内容添加到工作表的SelectionChange事件中,并根据需要更改条件。
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If ActiveCell.Row = 2 Then Selection.EntireRow.Insert End If End Sub