Nested Bulleted List

Is there a way to display columns of a table as indented items on bulleted lists?
The example in Formula2 is the closest that I can get.

Formula2: [Table 1].BulletedList(BulletedList([Table 1].Detail))

1 Like

Hello @Reed_strauss,

You can kind of fake it like this:

I presume there is a more elegant way to do this, but this might help for now, thanks!
=[Table 1].FormulaMap(currentvalue.Name+Character(10)+CurrentValue.Detail.Split(Character(10)).FormulaMap(character(9)+"- "+CurrentValue).BulletedList()).BulletedList()

Here you go:

Formula:

[Table 2].FormulaMap(
    Concatenate(CurrentValue, "
", CurrentValue.Detail.BulletedList())
).BulletedList()
5 Likes

Hi. I’m still a little bad with formulas … Is there a way to put more nested columns? like:

image

Thanks

Yes, following the same principle, nesting .BulletedList() within .BulletedList() within…

image

1 Like