Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果在 excel 中删除了任何行,我想做点什么。检查是否有任何行被删除。
我已经写了这个 - 但它似乎不起作用。请帮忙。
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Selection.EntireRow.Delete Then "my condition" End sub