New Bug Encountered: Minus LIST("") removes Duplicates in a List

Please consider the results in the Expression Assistant:

LIST(1,2,2,3) = 1 , 2 , 2 , 3

LIST(1,2,2,3) - LIST("") = 1 , 2 , 3

- LIST("") is meant to remove empty entries. But not to remove duplicates.

Solved Solved
0 9 571
1 ACCEPTED SOLUTION

@Fabian I had another thought. I think I thought of a really annoying way to do it. As long as the list isnโ€™t huge, I think this should work decently.

SPLIT(TRIM(SUBSTITUTE(CONCATENATE([YourList])), ", ", ""))," ")

Try playing around with that.

View solution in original post

9 REPLIES 9
Top Labels in this Space