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?
Harun24HR
Dec 17, 2022Bronze 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...