I have 2 table: Projects & Notes with 1 to many relationships.
I am creating a column in Projects that aggregates all notes with the respective project tag. I am wondering if there’s a way for me to format the output the text of that formula column.
Notes.Filter(Project.Contains(thisRow)).FormulaMap( CurrentValue.Title " " + CurrentValue.Notes ).Join(" ---")
I want the CurrentValue.Title to be boldened for better readability.
Thank you!
