Forum Discussion

warnera's avatar
warnera
Helper I
6 years ago
Solved

Finding unique text in 2 different columns

Hello all, I am trying to create a column that displays only the unique text shared between two columns. Created sample example below. Will be working with large dataset.    Column A               ...
  • v-lili6-msft's avatar
    v-lili6-msft
    6 years ago

    HI  warnera 

    You just miss "{ }' in this formula

    just adjust it as below:

    Text.Combine(List.Intersect({Text.Split([Column A],",") ,Text.Split([Column B],",")}),",")

    Result:

     

    Regards,

    Lin