Hello,
I found below mentioned VB code(macro) which deletes entire row if particular cell is blank. Is it possible to modify this code so that entire row is deleted if particular cell value is not equal to zero?
Please help me.
Public Sub DeleteRowOnCell()
On Error Resume Next
Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
ActiveSheet.UsedRange
End Sub
Bookmarks