Delete row based on contents of cell
Can this be used to delete cells only if the have returned blank as a False
response to a function?
"AndyG" wrote:
The following code does a great job of finding whole blank rows and deleting
them:
Range("B1", Range("B65536").End(xlUp)).SpecialCells _
(xlCellTypeBlanks).EntireRow.Delete
However, could someone please tell me how to modify this for two other
purposes:
1) Delete the whole row if any cell in column A: is has the contents of "SSN"
2) Delete the whole row if any cell in column C: is blank (null?)
Thank you in advance.
|