I have a Google Sheet with two columns: SetA and SetB. SetA contains values that must be removed from SetB, so that what I am left with is SetC, which contains ONLY values that are unique to SetB. Here is a copy of the file I've been beating my head against for the past few hours:
CodePudding user response:
You can try with this formula that finds with BYROW if there is a match in A or not:
=FILTER(unique(B2:B),BYROW(UNIQUE(B2:B),LAMBDA(each,IFERROR(MATCH(each,A2:A,0)=0,TRUE))))