Forum Discussion
- QuickBaseCoachDQrew CaptainI suggest that you first summarize all the children up to the Parent using a Combined Text Summary field.
Then, you are asking how do parse out the individual children teams.
Make a formula text field like this
var text value = ToText([My Combined Text summary field]);
Trim(Part($value,1,";"))
That will be the formula for the first child
Then copy that field and replace 1 with 2 for the 2nd child.