Try something along the line of:
Sub berry()
Dim strToFind
strToFind = "berry"
For r = 1 To 4
If InStr(1, Cells(r, 1), strToFind, vbTextCompare) > 0 Then Cells(r, 3) = Cells(r, 1)
Next r
End Sub
This assumes the list is in column 1 and the cell contents needs copying to column 3.
Originally Posted by Mike K.
Bookmarks