I am having nightmares
This is suppose to satrt at last row
if the value in that row (intFound) is bigger than or equal to intFirstNum
and if the same value is smaller than or equal intSecond
Then leave it alone and go one row up, otherwise
delete that current row.
PLEASE HELP
This is suppose to satrt at last row
if the value in that row (intFound) is bigger than or equal to intFirstNum
and if the same value is smaller than or equal intSecond
Then leave it alone and go one row up, otherwise
delete that current row.
PLEASE HELP
Code:
intRow = 44
For intRow = intLastRow To intRow Step -1
intFound = Cells(intLastRow, intCol).Value
If intFound >= intFirstNum Then
If intFound <= intSecondNum Then
intLastRow = intLastRow - 1
Else
Sheets("ACUITY Vs ISTEP GRAPH").Rows(intLastRow).Delete xlShiftUp
End If
Else
Sheets("ACUITY Vs ISTEP GRAPH").Rows(intLastRow).Delete xlShiftUp
End If
Next intRow