Hi All,
Just need a little help refining my macro. I'm trying to find errors in a column using part of the following script...
I'm trying to find any kind of error, e.g. #VALUE , #N/A, etc. I know that my problem is using "What:=IsError", just not sure what to replace it with?
Best,
Ben
Just need a little help refining my macro. I'm trying to find errors in a column using part of the following script...
Code:
Dim rngFound As Range
Set rngFound = Columns("N").Find(What:=IsError, After:=Range("N4"), LookAt:=xlWhole, _
SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False)
MsgBox rngFound.Address
I'm trying to find any kind of error, e.g. #VALUE , #N/A, etc. I know that my problem is using "What:=IsError", just not sure what to replace it with?
Best,
Ben