Joining Child Rows to Parent Row and Line Breaks... Need Bullet

I am trying to get my child rows to roll up to the parent row and have a line break in between each row which I have done, BUTTTT I need each new row to start with a * which I have done, except the very first row. Basically I need it to look like bullet points for all child rows:
=JOIN((COLLECT(CHILDREN([Meeting/Agenda/Task Name]@row), CHILDREN([Meeting/Agenda/Task Name]@row), <>"")), CHAR(10) + "*")
Best Answers
-
="*" + JOIN((COLLECT(CHILDREN([Meeting/Agenda/Task Name]@row), CHILDREN([Meeting/Agenda/Task Name]@row), <>"")), CHAR(10) + "*")
-
Hi @mragans23,
Try something like this.
="*" + JOIN((COLLECT(CHILDREN([Meeting/Agenda/Task Name]@row), CHILDREN([Meeting/Agenda/Task Name]@row), <>"")), CHAR(10) + "*")
Note: This is untested.
Hope this helps,
Dave
Answers
-
="*" + JOIN((COLLECT(CHILDREN([Meeting/Agenda/Task Name]@row), CHILDREN([Meeting/Agenda/Task Name]@row), <>"")), CHAR(10) + "*")
-
Hi @mragans23,
Try something like this.
="*" + JOIN((COLLECT(CHILDREN([Meeting/Agenda/Task Name]@row), CHILDREN([Meeting/Agenda/Task Name]@row), <>"")), CHAR(10) + "*")
Note: This is untested.
Hope this helps,
Dave
Help Article Resources
Categories
Check out the Formula Handbook template!