创建 Excel 宏以添加行

发布于 2024-09-24 18:33:59 字数 48 浏览 2 评论 0原文

我想在 Excel 中创建一个宏,当我到达某个单元格时添加一行。 任何帮助表示赞赏

and i want to create a macro in excel that add a row when i reach a certain cell.
any help appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

━╋う一瞬間旳綻放 2024-10-01 18:33:59

您可以将以下内容添加到工作表的 SelectionChange 事件中,并根据需要更改条件。

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If ActiveCell.Row = 2 Then
    Selection.EntireRow.Insert
End If

End Sub

You can add the below to the SelectionChange event of the worksheet and change the condition as necessary.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If ActiveCell.Row = 2 Then
    Selection.EntireRow.Insert
End If

End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文