Is there an easy way to tell Excel to delete a row if a certain cell in an intersecting column is blank? Would this require VBA?
As a reference point, I found the following VBA code:
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
but for some reason it crashes when I try to run it.