Is there a way to get around the fact that if you perform the Find function and the search text is not found, the program generates an error? i am attempting
If IsError(range(CurrentHeaderRange).Find(RORS1Text).Column) = False Then
but it is not working because the error msg still appears when the text is not found
alternatively, to turn error msgs off
On Error Resume Next
what turns them back on?
If IsError(range(CurrentHeaderRange).Find(RORS1Text).Column) = False Then
but it is not working because the error msg still appears when the text is not found
alternatively, to turn error msgs off
On Error Resume Next
what turns them back on?