Forum Discussion
gryzbert
Mar 30, 2023Copper Contributor
Textsplit passed to unique
Hi, I am trying to find unique values from a list where entries can consist of multiple values that are separated by slashes. The Textsplit function splits but omisses text after the first separator....
- Mar 30, 2023
Simplest option is to join the strings first, prior to splitting:
=SORT(UNIQUE(TEXTSPLIT(TEXTJOIN("/", , D3:D4), , "/", TRUE, 0)))
Regards
JosWoolley
Mar 30, 2023Iron Contributor
Simplest option is to join the strings first, prior to splitting:
=SORT(UNIQUE(TEXTSPLIT(TEXTJOIN("/", , D3:D4), , "/", TRUE, 0)))
Regards
gryzbert
Mar 30, 2023Copper Contributor
Works like a charm! Thanks a lot! 🙂