Reputation: 1
I have one column with about 4000 Part Numbers. Another column with about 8000 hyperlink URLs containing the part numbers. I want to match the part numbers with thier URLs. Manually searching each one will take forever.
Upvotes: 0
Views: 45
Reputation: 35853
Let your Part number be in A1
and your URLs in column F
, than use in B1
=INDEX(F:F,MATCH(1,1/ISNUMBER(FIND(A1,F:F)),0))
and press CTRL+SHIFT+ENTER to evaluate it. Drag this formula down.
Note, this formula finds first URL, which contains path number.
Upvotes: 1