Help

Rollup ArrayUnique but Format as Bullets

Solved
Jump to Solution
1579 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Jason_Friedlan1
6 - Interface Innovator
6 - Interface Innovator

Hey Guys:

Is there a way to take the result of a rollup that is comma separated and then convert it to a bulleted list in another field?

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

Formula and rollup fields only show text as plain text, so bulleted lists are not available.

However, you can fake a bulleted list by using a text character such as - or * in front of each line.
To do this, I recommend creating the list in a rollup directly. (If you can’t alter the existing rollup, create a new one.)

IF(
  ARRAYJOIN(values),
  "- " & ARRAYJOIN(values, "\n- ")
)

See Solution in Thread

2 Replies 2
kuovonne
18 - Pluto
18 - Pluto

Formula and rollup fields only show text as plain text, so bulleted lists are not available.

However, you can fake a bulleted list by using a text character such as - or * in front of each line.
To do this, I recommend creating the list in a rollup directly. (If you can’t alter the existing rollup, create a new one.)

IF(
  ARRAYJOIN(values),
  "- " & ARRAYJOIN(values, "\n- ")
)

To return a 'bullet point' list use the following alternative formula in the rollup.

IF(
  ARRAYJOIN(ARRAYUNIQUE(values), " • "),
  " • " & ARRAYJOIN(ARRAYUNIQUE(values), "\n • ")
)