Backup your data!
I don't think I fully understood what you need.
Run this macro, and tell me how I can make it better.
Between running the macro, and reading my comments in the code,
perhaps you can better explain what you need.
Sub SearchFor1155()
Dim rgF As Range, rgCell As Range, sAddress
'Search Column F
Set rgF = Range("F1:F" & Cells(Rows.Count, "F").End(xlUp).Row)
With rgF
'Search for "/1155/"
Set rgCell = .Find(What:="/1155/", LookIn:=xlValues)
If Not rgCell Is Nothing Then
sAddress = rgCell.Address
Do
'If "MOTHERBOARD" is in Column E
'& If "FOXCONN" is in Column D
If rgCell(1, 0) = "MOTHERBOARD" _
And rgCell(1, -1) = "FOXCONN" Then
'Then Place "MOTHERBOARD|1155 Socket" in Column K
rgCell(1, 6) = "MOTHERBOARD|1155 Socket"
End If
'Find next "/1155/"
Set rgCell = .FindNext(rgCell)
Loop While Not rgCell Is Nothing And rgCell.Address <> sAddress
End If
End With
End Sub
Bookmarks