And this?
Sub findProductscity()
Dim prodFound As Boolean
Dim CityFound As Boolean
Dim prodCell As Range
With Sheets("Input").Cells
Do
Set prodCell = .Find(What:="*Product1*", LookIn:=xlValues, LookAt:=xlWhole)
If Not prodCell Is Nothing Then
prodFound = True
If Right(Trim(prodCell), 4).value = Left(Trim(Worksheets("Data").Cells(1, 1).Value), 4) Then CityFound = True
End If
Loop Until prodFound = True And CityFound = True
End With
End Sub
If you look at cells it looks at the entire sheet, so I do not know why is doesn't look in A1, do remember that Find is case sensitive,
Bookmarks