I am using find method to look for a certain string within a cell. However, if that certain string does not exist, it will generate an error. I understand tat if the string is not found, excel will return a #VALUE, my qn is how can i turn off this error msg?
FYI, this is how i called the find method in VB, anything wrong w that?
While Application.WorksheetFunction.Find("\x", Cells(3, yLoop).Value) <> 0
I m trying to stop the macro once the string "\x" is not found by using the while loop, but is not helping..
FYI, this is how i called the find method in VB, anything wrong w that?
While Application.WorksheetFunction.Find("\x", Cells(3, yLoop).Value) <> 0
I m trying to stop the macro once the string "\x" is not found by using the while loop, but is not helping..