Hi,
Hoping someone will be able to help me out.
I've got a macro which basically reformats data from another source.
It then places all the data on a new sheet. My problem is that some of the formula that the macro places on the new sheet come back with the result #N/A - which is fine, as they are the result of a lookup.
What I want to try and do, is at the end of the macro, get it to delete the row if the activecell is showing as #N/A
I've tried to write a small bit of code for it...
The code does not seem to like 'ISNA' or '#N/A'. Any ideas on how I can get past this?Do
If ActiveCell.Value = "ISNA"
Rows(ActiveCell.Row).Columns("A:M").Select
Selection.Delete
ActiveCell.Offset(1, 0).Select
Else
ActiveCell.Offset(1, 0).Select
End If
Loop While ActiveCell.Value <> "0"
Cheers![]()
Bookmarks