1
如果交叉列中的某個單元格爲空白,是否有一種簡單的方法可以讓Excel刪除行?這需要VBA嗎?刪除基於空白單元格的行
爲參考點,我發現下面的VBA代碼:
Dim FoundCell As Range
Application.ScreenUpdating = False
Set FoundCell = Range("B:B").Find(what:="")
Do Until FoundCell Is Nothing
FoundCell.EntireRow.Delete
Set FoundCell = Range("B:B").FindNext
Loop
但由於某些原因,當我嘗試運行它崩潰。
SuperUser.com可能也是一個很好的問道。 http://meta.stackexchange.com/questions/90919/which-stack-exchange-site-is-best-for-microsoft-excel-questions – Kirby
@simoco編輯更好地顯示我來自哪裏。 – 114
所以,如果列B中的值爲空或「X」,您需要刪除行? –