Skip to main content
Solved

Break lines in Rollup field

  • July 6, 2023
  • 3 replies
  • 221 views

Forum|alt.badge.img+7

Hi all!

I was wondering why ARRAYJOIN(values, "\n") is not working in my base.

The only way I have been able to achieve line breaks is by creating a formula field.

I added some screenshots!

Thanks!

Best answer by Sho

Hi @Les_Gros_Becs ,

Is the Arrayjoin() replacement function discontinued?
You can use the function in a Rollup field just as you can in a Formula field.

SUBSTITUTE(ARRAYJOIN(values),",","\n")

 

3 replies

Forum|alt.badge.img+24
  • Inspiring
  • Answer
  • July 7, 2023

Hi @Les_Gros_Becs ,

Is the Arrayjoin() replacement function discontinued?
You can use the function in a Rollup field just as you can in a Formula field.

SUBSTITUTE(ARRAYJOIN(values),",","\n")

 


pressGO_design
Forum|alt.badge.img+21

You have one too many things* after the ARRAYJOIN.

Try ARRAYJOIN(values, “\n”)

*arguments? variables? I never know what they’re called. 


Forum|alt.badge.img+24
  • Inspiring
  • July 7, 2023

Oh! I was wrong. Thanks @pressGO_design