8

i am using this to in a macro to find stuff in my sheet:

Selection.Find(What:=email, After:=ActiveCell, LookIn:=xlFormulas, LookAt _
    :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
    False, SearchFormat:=False).Activate

how can i tell whether or not it found something?

Alex Gordon
  • 54,010
  • 276
  • 644
  • 1,024

3 Answers3

17
Dim rng As Range

Set rng = Selection.Find(What:=email, After:=ActiveCell, LookIn:=xlFormulas, _
    LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
    False, SearchFormat:=False)

If Not rng Is Nothing Then 'when rng <> nothing means found something'
    rng.Activate
End IF
manji
  • 46,486
  • 4
  • 90
  • 101
3

Find returns a Range object that will ave value Nothing if What is not found. From the help:

With Worksheets(1).Range("a1:a500")
    Set c = .Find(2, lookin:=xlValues)
    If Not c Is Nothing Then
        firstAddress = c.Address
        Do
            c.Value = 5
            Set c = .FindNext(c)
        Loop While Not c Is Nothing And c.Address <> firstAddress
    End If
End With
Ryan Shannon
  • 690
  • 1
  • 5
  • 9
  • Explaining that the value is `NOTHING` if statement doesn't find anything really helps, I was testing if the variable was `null` with `IsNull` and that didn't work! – FreeSoftwareServers Mar 08 '19 at 20:42
1

Selection.Find is like using Ctrl+F to find a value. You can then check against Activecell.Value to see if you got the desired result.

NickSentowski
  • 811
  • 13
  • 26