J
jswalsh33
I am using wild cards with "Find". My code is:
With Worksheets("Data").Cells(x, 3)
Set C = .Find(Sheets("Comp").Range("B9"), LookIn:=xlValues)
If Not C Is Nothing Then
s = "1"
End If
End With
Range ("B9") is Re*
This find finds Resch as well as Harrell and any other name with an re
sequence.
Is there a way to write this code such that it finds only those names that
start with Re?
Thanks for your help.
Jim
With Worksheets("Data").Cells(x, 3)
Set C = .Find(Sheets("Comp").Range("B9"), LookIn:=xlValues)
If Not C Is Nothing Then
s = "1"
End If
End With
Range ("B9") is Re*
This find finds Resch as well as Harrell and any other name with an re
sequence.
Is there a way to write this code such that it finds only those names that
start with Re?
Thanks for your help.
Jim