Forum Discussion
littlevillage
Aug 03, 2022Iron Contributor
How can write a formula to filter Duplicate values
Hi, I use Conditional Formating to show duplicate values In column A and B I want to get the rest of values in column A after remove duplivate values How can I write a formula for that case I hav...
- Aug 04, 2022
Little bit confusing. To extract duplicate values from a column use below formula-
=UNIQUE(FILTER(A1:A8,COUNTIF(A1:A8,A1:A8)>1))And to extract duplicate values use below formula
=FILTER(A1:A8,COUNTIF(A1:A8,A1:A8)=1)
Harun24HR
Aug 04, 2022Bronze Contributor
Little bit confusing. To extract duplicate values from a column use below formula-
=UNIQUE(FILTER(A1:A8,COUNTIF(A1:A8,A1:A8)>1))
And to extract duplicate values use below formula
=FILTER(A1:A8,COUNTIF(A1:A8,A1:A8)=1)
- littlevillageAug 21, 2022Iron Contributor