Reputation: 55
I have a sheet with several lists of names like such:
A | B | C
Joe | Steve | Mike
Steve | Dave | Alex
Sarah | Mike | Joe
Beth | Jane | Steve
I'm trying to consolidate all the names in those columns down to a single range (such as can be used by unique()
) so that users can be selected from a dropdown.
Adding a multi-column range to unique()
returns a multi-column result based on the uniqueness of each multi-column row (i.e. if 'Sarah, Mike, Joe' above were repeated, that would filter down to a single entry in the results)
Upvotes: 1
Views: 48
Reputation: 1
=UNIQUE(TRANSPOSE(SPLIT(TEXTJOIN(" ",1,TRANSPOSE(QUERY(TRANSPOSE(A:C),,50000))), " ")))
Upvotes: 1