Sub Test()
Const LookFor As String = "abc"
Dim Sh As Worksheet
Dim rng As Range
For Each Sh In ActiveWorkbook.Worksheets
With Sh
Set rng = .Cells.Find(What:=LookFor, After:=.Cells(.Cells.Count), LookIn:=xlValues, LookAt:= _
xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False)
If Not rng Is Nothing Then
Application.Goto rng, True
Exit Sub
End If
End With
Next Sh
End Sub