One way to extract the uniques list using non-array formulas
Assuming numbers listed in A1 down
Put in B1:
=IF(A1="","",IF(COUNTIF($A$1:A1,A1)1,"",ROW()))
Put in C1:
=IF(ISERROR(SMALL(B:B,ROWS($A$1:A1))),"",
INDEX(A:A,MATCH(SMALL(B:B,ROWS($A$1:A1)),B:B,0)))
Select B1:C1, copy down till the last row of data in col A
Col C will return the list of unique numbers in col A,
neatly bunched at the top
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--
"Noemi" wrote in message
...
How do I delete duplicate numbers from a row using a formula rather then
finding each one seperately.
Thanks