从其他Excel工作表中删除具有匹配值的行[已关闭]

kjthegm6  于 2023-05-19  发布在  其他
关注(0)|答案(1)|浏览(106)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
4天前关闭。
Improve this question
我想写一些代码,当我选择一个单元格,然后按下sheet 1它将删除整个选定行从sheet 1(例如:第8行),并对数据表上的确切值执行相同的操作(我想使用PT-2查找数据表上的确切行),但我不知道x1c 0d1xx 1c 1d 1xx 1c 2d 1x

r3i60tvu

r3i60tvu1#

这允许您在每次运行宏时从“Sheet1”和“Sheet2”中删除该行。

Sub DeleteSelectedRow()
    Dim numRows As Long
    Dim i As Long

    numRows = ActiveCell.Row
    Sheets("Sheet1").Rows(numRows).Delete
    Sheets("Sheet2").Rows(numRows).Delete
End Sub

相关问题