Name and email
This style stacks a bold name over a smaller, muted email in a single column.
Setup
This example references thename and email fields from the saas__users_detailed view. Because the email is rendered inside the name column, you can hide the original email column so it doesn’t appear twice in the table.
| Col | Name | Description or formula | Purpose |
|---|---|---|---|
| A | Name | User’s name field | Shown as the bold primary text |
| B | User’s email field | Shown as the muted subtext |
Example code
Markdown template:Avatar with initials
This style adds a circular avatar showing each user’s initials next to their name and email.
Setup
This example adds a calculation that extracts the user’s initials from their name—the first letter of the first name and the first letter of the last name, where columnA is the name field. Set the initials calculation column to Display as Markdown, then hide the original name and email columns so only the combined profile renders.
The Markdown template references the initials calculation as {{calc_1.value}}. If your calculation has a different name, update the reference to match.
| Col | Name | Description or formula | Purpose |
|---|---|---|---|
| A | Name | User’s name field | Bold primary text; source for the initials |
| B | User’s email field | Muted subtext | |
| C | Initials (calc_1) | =LEFT(A5, 1) & MID(A5, (FIND(" ", A5) + 1), 1) | First and last initial shown in the avatar |