Perfect, thank you!
For anyone else looking at this…if you have a long formula with lots of pieces of data you want to break into separate lines at specific points, you can keep repeating Rickard’s basic string:
So this:
List(thisRow.Symbol, thisRow.Date, thisRow.Notes).Join(LineBreak())
Gives you this:
Symbol
Date
Notes
But repeating .Join(LineBreak()).List() gives you additional control over where the line break occurs:
List(thisRow.Symbol).Join(LineBreak()).List(thisRow.Date+": "+thisRow.Notes).Join(LineBreak())
So you get this:
Symbol
Date: Notes