Attached are three examples that can be molded to your needs.
Code:
Option Explicit
Sub FindInLists()
'
'
'
Dim SheetsToSearch, SrchStrg As String, ws As Excel.Worksheet, r As Range
Set ws = Sheets("Sheet1")
SrchStrg = Application.InputBox("Enter Term to search ", "Search Term", Type:=2)
With ws
With ws.Range("A2:AB5000") 'EDIT RANGE AS REQUIRED
Set r = .Find(what:=SrchStrg, After:=.Range("A1")) 'find the cell whose value is equal to SrchStrg and activate it
If Not r Is Nothing Then
ws.Activate: r.Activate
ws.Range("B1").Value = SrchStrg
ws.Range("D1").Value = ActiveCell.Address
ElseIf r Is Nothing Then
MsgBox "Search term does not exist. ", vbInformation, "Item Not Found"
End If
End With
End With
End Sub