Skip to main content

So I’m noticing, that ARRAYUNIQUE(value), is returning exactly what I need/want, except…it’s adding a space after the value. Is there a way to ensure that there is no space?

e.g.

1_a3dcco95, 1_2hfykt9q, , 1_s67jl895, 1_qzarywx0, 1_qumummg1, 1_6qp5g8uh, 1_7g44di07

Thanks

ARRAYJOIN(ARRAYUNIQUE(values), ",")


If you want to eliminate blanks


ARRAYJOIN(ARRAYCOMPACT(ARRAYUNIQUE(values)), ",")


Eggsalad! Ok, all that for a simple removing of a space. LOVE IT!


Thanks a billion. Wasn’t sure of that compact one.


Have a great day!


Reply