Find or match

Last Edited By Krjb Donovan
Last Updated: Mar 05, 2014 09:36 PM GMT

Question

If I have a list of names in Column A (now alphabetically) and another list in Column B (alphabetically), however not all listing from A are not in B. And what I wanted from Column C is to mark YES if the names from A is in B and NO if not in B. How do i make that argument with03. Ramil

Answer

You can use the VLOOKUP formula to help you get a YES and a #N/A.

First, you will need to insert a column between A and B and fill it with YES all the way down for values in A. Your Column C will now be Column D. So, assuming your data in Column B (now C) goes to 75 and Column A goes to 100. In cell D2 (assuming you have a header row)

=VLOOKUP(C2,$A$2:$B$100,2,False)

Look up the value in C2, if you see a matching item in column A between 2 and 100, then return the item from the second column of A and B. Copy this formula down. For any value in column C that does not have a match, you will get a #N/A.


-Craig

Advertisement

©2024 eLuminary LLC. All rights reserved.