Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Aug 24, 2022 02:33 PM
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
Aug 24, 2022 03:24 PM
ARRAYJOIN(ARRAYUNIQUE(values), ",")
If you want to eliminate blanks
ARRAYJOIN(ARRAYCOMPACT(ARRAYUNIQUE(values)), ",")
Aug 24, 2022 03:38 PM
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!