INDEX multiple CHILDREN values in PARENTrow
Hi,
I would like to index multiple children in a parent row. I'm using this formula if there is 3 children :
="โข" + INDEX(CHILDREN([Primary Column]@row), 1) + $[Column3]$1 + INDEX(CHILDREN([Primary Column]@row), 2) + $[Column3]$1 + INDEX(CHILDREN([Primary Column]@row), 3)
I'm using this formula if there is 2 children :
="โข" + INDEX(CHILDREN([Primary Column]@row), 1) + $[Column3]$1 + INDEX(CHILDREN([Primary Column]@row), 2)
Is it possible to make sure that the formula count the number of children and return the correct values in the parent row instead of adding up all index?
Thank you
Best Answer
-
=join(children([primary column]@row),char(10)+"โข")
That should do it.
Answers
-
=join(children([primary column]@row),char(10)+"โข")
That should do it.
Help Article Resources
Categories
Check out the Formula Handbook template!