Forum Discussion

gryzbert's avatar
gryzbert
Copper Contributor
Mar 30, 2023
Solved

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....
  • JosWoolley's avatar
    Mar 30, 2023

    gryzbert 

     

    Simplest option is to join the strings first, prior to splitting:

     

    =SORT(UNIQUE(TEXTSPLIT(TEXTJOIN("/", , D3:D4), , "/", TRUE, 0)))

     

    Regards

Resources