Formatting Multiple Returned Entries

Hello!

I’m trying create a bulleted list (ideally) of multiple entries returned from a search. Here’s the sample code:

=[Chart].Filter(checkbox=true)

Here’s what I’d like it to look like:

*Checkbox 1
*Checkbox 2

Currently, everything returned by this formula is separated by a comma, and when it’s more than 2 or 3 items it’s difficult to read.

Hi Benn,

Did you try changing the formula to -

=[Chart].Filter(checkbox=true).BulletedList()

2 Likes

Beautiful! That did it!