The original request -

Originally Posted by
hgufrin
Does anyone out there have code that will search every cell in column G for the word "Panel" and return the word "Yes" in column H.
Using the same method as MDubbelboer - our old friends the Find and FindNext methods:
Sub PanelCells()
Dim rngPanelCell As Range, firstAddress As String
With Worksheets(1).Range("G:G") 'search this range on sheet1
Set rngPanelCell = .Find(what:="Panel", LookIn:=xlValues, LookAt:=xlPart) 'find panel cell
If Not rngPanelCell Is Nothing Then
firstAddress = rngPanelCell.Address
Do
rngPanelCell.Offset(, 1).Value = "Yes"
Set rngPanelCell = .FindNext(rngPanelCell)
Loop While Not rngPanelCell Is Nothing And rngPanelCell.Address <> firstAddress 'keep looking
End If
End With
Set rngPanelCell = Nothing
End Sub
Bookmarks