In the attached spreadsheet I have added the custom Metal function
Function Metal(Srng As Range, HLook As Range, Oset As Integer)
Dim Cell As Range
Dim MCount As Integer
MCount = 0
For Each Cell In Srng
If Application.WorksheetFunction.HLookup(Cell, HLook, Oset) = "Metal" Then
MCount = MCount + 1
End If
Next Cell
If MCount > 0 Then
Metal = "Yes"
Else
Metal = "No"
End If
End Function
In Cell J3 you will fine the formula "=metal(B3:H3,B13:H14,2)"
In the function the
first range is all of the items you want to search for
Second range is the "lookup" range
3rd item is the offset for the Hlookup command.
You can copy this function and rename it Rubber, plastic etc, and change the ="Metal" in the function to Rubber etc.
Bookmarks