Forum Discussion
sumanth0193
Dec 14, 2022Copper Contributor
Fnd unique Values
Hello, I have 19k rows in Col A and 30K rows in col B. The Col A matches the column B data.I want to remove the matching values and display the rest. I've tried true or false formula. it dosent hel...
- Dec 14, 2022
=IF(ISNA(MATCH(B1,$A$1:$A$19000,0)),B1,"")You can try this formula in cell C1 and copy down as required.
OliverScheurich
Dec 14, 2022Gold Contributor
=IF(ISNA(MATCH(B1,$A$1:$A$19000,0)),B1,"")You can try this formula in cell C1 and copy down as required.