Thank you for replying!
@cwinhall
I keep getting errors. I fixed some, like the ‘ was supposed to be ‘. It’s the same thing, but the font looked different. Baserow did not like me copying and pasting it. I had to backspace out all the ’ and type ‘. I ran into this error in another SaaS (don’t remember which software…could have been CSS or HTML), so that’s why I thought of looking for that.
join(concat(
field(‘Name’), ’ - ',
field(‘Title’), ’ - ',
field(‘Version’), ’ - ',
totext(field(‘Features’)), ’ - ',
totext(field(‘Body Style’)), ’ - ',
field(‘Colors’), ’ - ‘,
field(‘Notes’), ’ - ‘,
field(‘URL’)
),’,’)
This worked after I fixed all the ‘
However, I wanted everything on a new line, so I added "\n", but it just wrote \n at the end of every line. 
- Name\n - Title\n - Version\n - Feature\n
On another note, because there were two items in the “Features” linked field, it repeated the entire formula twice. For example:
- Name
- Title
- Version
- Feature 1
- Body Style
- Colors
- Notes
- URL
- Name
- Title
- Version
- Feature 2
- Body Style
- Colors
- Notes
- URL
If features and body style had two linked items, it would repeat four times. I just need it to do this:
- Name
- Title
- Version
- Feature 1, Feature 2
- Body Style 1, Body Style 2
- Colors
- Notes
- URL
@rensinghoff
concat(
if(field('Name') != "", "• " & field('Name') & "\n", ""),
if(field('Title') != "", "• " & field('Title') & "\n", ""),
if(field('Version') != "", "• " & field('Version') & "\n", ""),
if(field('Features') != "", "• Features: " & field('Features') & "\n", ""),
if(field('Body Style') != "", "• Body Style: " & field('Body Style') & "\n", ""),
if(field('Colors') != "", "• Colors: " & field('Colors') & "\n", ""),
if(field('Notes') != "", "• Notes: " & field('Notes') & "\n", ""),
if(field('URL') != "", "• URL: " & field('URL'), "")
)
Gives me: Error in the formula on line 2 starting at letter 38 Invalid letters ‘&’, was instead expecting ‘,’, ‘)’.
concat(
"• ", field('Name'), "\n",
"• ", field('Title'), "\n",
"• ", field('Version'), "\n",
"• Features: ", field('Features'), "\n",
"• Body Style: ", field('Body Style'), "\n",
"• Colors: ", field('Colors'), "\n",
"• Notes: ", field('Notes'), "\n",
"• URL: ", field('URL')
)
Gives me: Error with formula: 1 argument was given to the function join, it must instead be given exactly 2 arguments.