Filter nonblank AND unique

D

Dave Peterson

I'd use a helper column with a formula like:

=and(a2<>"",countif(a:a,a2)=1)
and fill down

And filter on that helper column.
 
Top