Excel ( F1 match):
match_type 0, lookup_value - , - (?) (*) - lookup_value. ; .
, =MATCH("*Banana*",C8,0) 1, C8 "Banana choco".
VBA, , , , , :
myResult = IsNumeric(Application.Match("*" & ActiveCell.Value & "*", elementsListRange, 0))
B2:B605 , elementListRange, , , , - ( ):
For Each cell in elementsListRange.Cells
myResult = Application.Match("*" & cell.Value & "*", B2:B605, 0)
if (IsNumeric(myResult)) then
Range("K" & myResult).Value = Range("K" & myResult).Value + 10
end if
next