View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ron de Bruin Ron de Bruin is offline
external usenet poster
 
Posts: 11,123
Default Delete Rows where there are #N/A Values

Hi FIRSTROUNDKO

Try a example on this page
http://www.rondebruin.nl/delete.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl



"FIRSTROUNDKO via OfficeKB.com" <u15639@uwe wrote in message news:6437e9e5a6c6c@uwe...
Hi,

I have a collumn

X
#N/A
X
X
#N/A
#N/A
#N/A

The #N/A's where produced through vlookups but I have copy paste special so
they are value only I have tried the sub

LASTROW2 = Cells(Rows.Count, 1).End(xlUp).row
For NB = LASTROW2 To 1 Step -1
Cells(NB, 5).Select
If Cells(NB, 5).Value = "X" Then
Selection.EntireRow.Delete
End If
Next NB

But all rows is deleted

Thanks

In Advance

--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...tions/200608/1