Hi,
Have the following:
Problem:
If SpeciesID = 11 .Find(what:=SpeciesID) returns Cell with value 110
How do I ensure the search returns a whole field value?
Thanks
Have the following:
Code:
If SpeciesID < 600 Then
Set found = Sheets("Sheet2").Range("C2:C" & totArabic).Find(what:=SpeciesID) 'finds a match
Else
Set found = Sheets("Sheet2").Range("B2:B" & totArabic).Find(what:=SpeciesID) 'finds a match
End If
If SpeciesID = 11 .Find(what:=SpeciesID) returns Cell with value 110
How do I ensure the search returns a whole field value?
Thanks