Hello…
I’m using a rollup with ARRAYJOIN(values,"\n • ")
Which is giving me this result
Item 1
• Item 2
• Item 3
I want this result
• Item 1
• Item 2
• Item 3
How do I create a formula that puts a bullet on first item?
Hello…
I’m using a rollup with ARRAYJOIN(values,"\n • ")
Which is giving me this result
Item 1
• Item 2
• Item 3
I want this result
• Item 1
• Item 2
• Item 3
How do I create a formula that puts a bullet on first item?
Best answer by kuovonne
To avoid an extra bullet if there are no records, put the initial bullet in an IF statement:
IF(COUNTA(values) >= 1, "• ") & ARRAYJOIN(values,"\n• ")
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.