Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Break lines in Rollup field

Topic Labels: Formulas
Solved
Jump to Solution
2798 3
cancel
Showing results for 
Search instead for 
Did you mean: 
Les_Gros_Becs
6 - Interface Innovator
6 - Interface Innovator

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!

1 Solution

Accepted Solutions
Sho
11 - Venus
11 - Venus

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")

 

See Solution in Thread

3 Replies 3
Sho
11 - Venus
11 - Venus

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")

 

You have one too many things* after the ARRAYJOIN.

Try ARRAYJOIN(values, “\n”)

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

Sho
11 - Venus
11 - Venus

Oh! I was wrong. Thanks @pressGO_design