I have a question regarding comparing lists in Excel.
Basically, I want to see if the value in column B exists in the column A for all values in column B. If the does exist, I want to Return "Yes" beside that value in column C. I have tried:
=IFERROR(IF(MATCH(B2, A2:A5000),"Yes",),"No")
But this returns "Yes" for all values, even though I know for sure that this is not the case.
Is there something that I am doing wrong?
Any assistance is appreciated.