Forum Discussion
parky_pilot
Dec 17, 2022Copper Contributor
find entries common in two lists
how do you find entries common in two lists in excel 365?
- Harun24HRBronze Contributor
parky_pilot Find common entries, then what?
(1) Do you want to highlight commons?
(2) Do you want list separate common lists?
(3) Just want to mark TRUE/FALSE or Yes/No? or something else?
To highlight common items use-
=COUNTIFS($G$2:$G$7,$A2)>0
To separate lists, use-
=FILTER(A2:A7,COUNTIFS(G2:G7,A2:A7))
To mark as TRUE/FALSE, use-
=ISNUMBER(XMATCH(A2:A7,G2:G7,0))
Download the attached file to see more...
- dscheikeyBronze ContributorFor example, with the MATCH() function. Here is the syntax: =XMATCH(lookup_value, lookup_array, [match_mode], [search_mode])
- NikolinoDEGold Contributor
How to compare data in two columns to find duplicates in Excel
You can use the following methods to compare data in two Microsoft Excel worksheet columns and find duplicate entries. You will dind more information in the upper link.