Sub SearchSheetsWASHAndUBS()
Dim LstRw As Long, SrchRng As Range, SrchTrm As Range
'''Amend the next line to the real range where your values to search for reside.
Set SrchRng = Range("A1:A200")
For Each SrchTrm In SrchRng
With Sheets("WASH")
LstRw = .Cells(Rows.Count, "N").End(xlUp).Row
On Error Resume Next
Set Found = .Range("N1:N" & LstRw).Find(SrchTrm, lookat:=xlContents)
If Not Found Is Nothing Then
MsgTxt = SrchTrm & " is located on '" & .Name & "' sheet in cell " & Found.Address(0, 0)
MsgBox MsgTxt
SrchTrm.Font.ColorIndex = 3
End If
On Error GoTo 0
End With
With Sheets("UBS")
LstRw = .Cells(Rows.Count, "N").End(xlUp).Row
On Error Resume Next
Set Found = .Range("N1:N" & LstRw).Find(SrchTrm, lookat:=xlContents)
If Not Found Is Nothing Then
MsgTxt = SrchTrm & " is located on '" & .Name & "' sheet in cell " & Found.Address(0, 0)
MsgBox MsgTxt
SrchTrm.Font.ColorIndex = 3
End If
On Error GoTo 0
End With
Next SrchTrm
End Sub