Reputation: 99
I have many values in row 5. I want to extract the unique values in row 5, and present them in a vertical list.
When I throw a unique-formula on row 5, the list is created horisontally sideways, not downwards.
The scenario is described in this picture: Picture link
Upvotes: 1
Views: 541
Reputation: 507
Use TRANSPOSE
=TRANSPOSE(UNIQUE(row5,1))
or
=UNIQUE(TRANSPOSE(row5))
where row5 is your range,
Upvotes: 1