vba清空选中单元格所在行的内容

2025-04-06 23:58:44
推荐回答(1个)
回答1:

Sub 删除()
i = ActiveCell.Row
Rows(i).ClearContents
End Sub