Reputation: 171
I have what seems to be an easy task but at the minute i'm stumped. I have a list of text values, say A1:A19, with multiple entries some of which are repeated in the list. I want to take the list in column A and copy to a row, say B2:B8, However i only want to move across each individual value once. Can this be done?
Upvotes: 0
Views: 394
Reputation: 19837
UNIQUE returns the unique values from a range.
TRANSPOSE rotates cells from rows to columns or vice-versa.
=TRANSPOSE(UNIQUE(A2:A19))
Upvotes: 1