The new forums will be named Coin Return (based on the most recent
vote)! You can check on the status and timeline of the transition to the new forums
here.
The Guiding Principles and New Rules
document is now in effect.
Excel Question - Names search
So I have two lists of names in columns on two different spreadsheets. What I need to know quickly is which names are on both (we are looking at 2k plus lists per spreadsheet). Is there a function beyond manually control-f searching each record to check which records can be found in both?
0
Posts
=IF(AND(COUNTIF($A$2:$A$2000,A2)>0,COUNTIF(Sheet2!A2:A30,A2)>0),"Yes","")
Where the names in sheet one are all in column A and the names in sheet two are also all in column A. You'd paste this formula in column B and fill down for each row that has names. You'd do this in both sheets (changing the references as appropriate), and it would have little "Yes" results for any that appear in both list.
There is room for some more elegance, really, but that'll do to tell if a name appears at least once in both lists.
<- Enraged.
This can be closed, no helping bad source data.
=vlookup(!sheet1,a1, !sheet2A1:A9999999(or whatever),1,true/false)
and then vice versa on sheet 2. hell the people could see when they enter a name if it's on the other list. the only issue is if there are 2 people with the same name, and they aren't unique, it's going to throw it off.
i think if you select the last field as "true" it will account for the case differences. if not, blazefire has the right formula to normalize them. However, you'd need to change the policy going forward or have to do that each time you check it.
Or are you are just looking for a "report" you can run weekly/monthly/whatever that will list all names that are on both?
Dr. - to modify a bit
=iferror(vlookup(Upper(!sheet1,a1), UPPER(!sheet2A1:A9999999(or whatever)),1,false) , "No Match Found")
This will return "No Match Found" instead of #N/A if nothing is found.
Thanks!
does if(iserror work? i usually use if(isna. potato/potahto i guess?