I have two different brand lists in two different columns, New List and Reference List. I want to make a formula that returns only the matches between two columns, as shown in the table below.
Both list will change often, so the formula should be able to adapt as the number of columns change. Each column and where the formula returns data is on a different tab within the same document, if that matters (I can take a generic formula and plug in these columns, as long as the formula supports these columns being in different tabs).
I am able to use formulas to check if the New List values are in Reference List. It is making a formula that searches through the New List to automatically return matches in subsequent rows (without empty rows in between) that is giving me trouble. If possible I would prefer to do this with excel formulas and not VBA.
New List | Reference List | Formula Returns |
Brand D | Brand A | Brand D |
Brand Y | Brand B | Brand B |
Brand B | Brand C | |
Brand Z | Brand D | |
Brand E |
Both list will change often, so the formula should be able to adapt as the number of columns change. Each column and where the formula returns data is on a different tab within the same document, if that matters (I can take a generic formula and plug in these columns, as long as the formula supports these columns being in different tabs).
I am able to use formulas to check if the New List values are in Reference List. It is making a formula that searches through the New List to automatically return matches in subsequent rows (without empty rows in between) that is giving me trouble. If possible I would prefer to do this with excel formulas and not VBA.