Tables displayed as outlines — outline layouts

Hi @Bruce_F_Donnelly and Welcome back to the Community :blush: !

To be honest, I think you could easily do something similar using a Lookup (instead of simple select list) and group a Relationship table instead of People and Relationships :blush: (see the sample :blush: )

As for creating outlines based on the content of tables, it’s possible using canvas formulas :blush:
(See below the 2 tables in the sample :blush: ).

For example, a canvas formula such as this one …

Relationship.FormulaMap(
  List(
    CurrentValue.Relationship,
    BulletedList(CurrentValue.[People & Relationship].Name)
  ).Join(Character(10))
).BulletedList()

would return …

With Coda New Editor (currently in Beta), announced during the last Block Party :partying_face:

A formula looking like this …

Relationship.FormulaMap(
  Concatenate(
    CurrentValue.Relationship,
    BulletedList(CurrentValue.[People & Relationship].Name)
  )
).Join(LineBreak())

… would return :blush:

Here’s another topic with a somewhat similar demand / possibilities of gathering content from tables :blush:

(Don’t hesitate if you need explanations :innocent: … I was just trying to show you some ideas :blush: )

2 Likes