Forum Discussion
Swengineer
Oct 07, 2020Copper Contributor
How to combine columns into a single one
Hello I want to use the new "Unique" function on multiple columns and get the list of unique values in a single column, is there a way to do that using the new dynamic arrays? Thanks! Edi...
Swengineer
Oct 07, 2020Copper Contributor
Thanks for the reply. I added a file and some more text in the opening post as per your advice.
SergeiBaklan
Oct 09, 2020Diamond Contributor
That could be like
=SORT(UNIQUE(INDEX($A$2:$D$19,MOD(SEQUENCE(2*18)-1,18)+1,INT(SEQUENCE(2*18,,18)/18))))
concrete size you may calculate by COUNTA()
- SwengineerOct 09, 2020Copper Contributor
SergeiBaklan That works! Thanks a lot.
- SergeiBaklanOct 09, 2020Diamond Contributor
Swengineer , you are welcome
- carlsenkJul 19, 2022Copper ContributorToday you taught me something too. Great technique with UNIQUE (spills) and SEQUENCE. Thank you.