Hi MVP,
So sorry for replying you so late !
I tried both of the codes but i am getting this run time error '1004: Cannot use that command on overlapping selections.
So i tried by searching in google why i am getting that error "
The code won't work if you have blank cells in more than one column on the same row. You'll have to loop through the columns."
With the below code i am able to delete blank cells which are present in the column.
Sub DeleteAllBlankCells()
Dim rgCol As Range
On Error Resume Next
For Each rgCol In Range("A1:V1").Columns
rgCol.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
Next rgCol
End Sub
Now i want to delete want to the entire row when a cell within the row is blank.
Can u pls help me with this.
Thank you!
Regards
Wither