Skip to main content

Rollup - space and comma


Sean_Lake1
Forum|alt.badge.img+16

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

2 replies

kuovonne
Forum|alt.badge.img+27
  • Brainy
  • 6002 replies
  • August 24, 2022
ARRAYJOIN(ARRAYUNIQUE(values), ",")

If you want to eliminate blanks

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


Sean_Lake1
Forum|alt.badge.img+16
  • Author
  • Inspiring
  • 100 replies
  • August 24, 2022

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