1
votes

I need the formula in Google Sheets to find any values in a cell that match values in cells from another Sheet, and copy the matched value in the adjacent cell. Preferably I need an array formula to copy down all cells.

Here is my sample sheet:

https://docs.google.com/spreadsheets/d/1jCzLUPQiykkgVF1JhNGGFdnoGnukVdZsdduDTfyCWfc/edit?usp=sharing

1
sheet is privateplayer0

1 Answers

2
votes

See if this works

=ArrayFormula(if(len(A2:A), iferror(PROPER(regexextract(A2:A, "(?i)"&textjoin("|", 1, Sheet2!A2:A))), "No Match"),))

(Formula entered in cell C2 in the spreadsheet you shared).