I am fairly new to code and haven't found a post covering this so any help would be great.
Basically am trying to review a large number of rows and delete a cell range in a row if a specified cell in the row does not equal a certain character or if a specified cell equals "TEXT". The furthest I have come is entire row deletion based on the specified criteria to delete.
Currently:
Dim dblrow As Double
Dblrow = 6
Do while (Cells(dblrow,1).Value <> "")
If Cells(dblrow, 23).Value <> "0" _
Or Cells(dblrow,5).Value = "TEXT" Then
Rows(dblrow).Select
Selection.Delete
Thank you