Don I suggested that originally. I miss read the request and the op wanted
unique items only and edit paste special transpose will not give unique.
so you have to filter first.

Signature
Hope this helps
Martin Fishlock, Bangkok, Thailand
Please do not forget to rate this reply.
that's what i'm trying to avoid, that means each time the list gets updated
w/ about 4000 more records a day, i'ma have to keep recollecting via
copy/paste... which is a bit humbug.
i want to avoid using vba because those columns tends to be changed a lot.
and that is why formula works better. if column or rows gets moved, the
autofill will automaticly changes the cells.row/column.
i wish excel team would expand on the arrays and indexing functions, which
would make excel even more powerful. but then they'll tell you, why dont'
you just use access... then i'd say, i'd love to, but how am i going to
convince 50 other people?
aloha, orbii
> Don I suggested that originally. I miss read the request and the op wanted
> unique items only and edit paste special transpose will not give unique.
[quoted text clipped - 16 lines]
>> Dons Auto Pages: <http://www.donsautopages.co.nz/>
>> Email: <don@NOSPAMdonsautopages.co.nz>
Bob Phillips - 29 Dec 2006 10:23 GMT
Assuming that your data is on Sheet1, A1:A20, then on sheet2
A1: =Sheet1!A1
B1: ==IF(ISERROR(MATCH(0,COUNTIF($A1:A1,Sheet1!$A$1:$A$20&""),0)),"",
INDEX(IF(ISBLANK(Sheet1!$A$1:$A$20),"",Sheet1!$A$1:$A$20),MATCH(0,COUNTIF($A1:A1,Sheet1!$A$1:$A$20&""),0)))
B1 is an array formula, just copy it across as far as you need.

Signature
---
HTH
Bob
(change the xxxx to gmail if mailing direct)
> that's what i'm trying to avoid, that means each time the list gets
> updated w/ about 4000 more records a day, i'ma have to keep recollecting
[quoted text clipped - 32 lines]
>>> Dons Auto Pages: <http://www.donsautopages.co.nz/>
>>> Email: <don@NOSPAMdonsautopages.co.nz>
bplumhoff@gmail.com - 30 Dec 2006 06:59 GMT
Hello,
I suggested a short (and quite simple - I hope) formula which uses a
(not too complex and well-tested (ok, but not guaranteed)) UDF.
If you want to "die" in complexity then take a complex
TRANSPOSE(INDEX/OFFSET(1/COUNTIF()))) approach. You mentioned that
changes of the result area are to be expected, I think.
SCNR,
Bernd