rubthebuddha
New Member
- Joined
- Nov 18, 2009
- Messages
- 32
Does anyone have a formula for extracting unique values from a single column of a large (>10k records) list that doesn't bog down Excel?
Formulas are desired, as replacing duplicates and using macros/custom functions are beyond most of my end users.
The formula I usually use is similar to this:
=IFERROR(INDEX($B$2:$B$100,MATCH(0,COUNTIF($A$1:$A1,$B$2:$B$100),0)),"")
in which the data set is in B and the values are returned in A. It works for a few hundred rows just fine, but when I get in the thousands, Excel gets bogged down and becomes almost non-functional.
Formulas are desired, as replacing duplicates and using macros/custom functions are beyond most of my end users.
The formula I usually use is similar to this:
=IFERROR(INDEX($B$2:$B$100,MATCH(0,COUNTIF($A$1:$A1,$B$2:$B$100),0)),"")
in which the data set is in B and the values are returned in A. It works for a few hundred rows just fine, but when I get in the thousands, Excel gets bogged down and becomes almost non-functional.