Hi Keri,
Try this.
Sub test()
For Each Sheet In ActiveWorkbook.Sheets
For Each cell In Sheet.Columns("J:K").Cells
If IsError(cell.Value) = True Then
Sheet.Rows(cell.Row).Delete (xlUp)
End If
Next cell
Next Sheet
End Sub
Regards
Ankur Kanchan
www.xlmacros.com
> Hi,
>
[quoted text clipped - 9 lines]
> What I would like to do is search for these #VALUE! cells and delete
> the rows where they are found.
keri - 14 Dec 2006 11:45 GMT
Thankyou for this and putting me on the right track.
> Hi Keri,
>
[quoted text clipped - 28 lines]
> > What I would like to do is search for these #VALUE! cells and delete
> > the rows where they are found.