Forum Discussion
YJ2023
Feb 21, 2023Copper Contributor
EXCEL Getting exact match of 3 cells against anywhere in 3 columns
Hi All, I am new to the forum hope someone can help me with the correct formula for me, I al looking to get an "output" column created like below A B C E F G H output I am Leg...
FikturFox
Feb 21, 2023Brass Contributor
Perhaps..
=LET(a, BYROW(A2:C6, LAMBDA(r, TEXTJOIN("|",1,r))),
BYROW(E2:G6, LAMBDA(r, IF(ISNUMBER(XMATCH(TEXTJOIN("|",1,r),a)),"Yes","No"))))