I was trying to reference the children of two columns @row in a MIN(COLLECT()) function.
Currently, I am only able to use two separate COLLECT() ---
MIN(COLLECT(CHILDREN(col1@row, criteriaRange1, criteria1), COLLECT(CHILDREN(col2@row, criteriaRange1, criteria1))
But when I arrange the two columns together, MIN(COLLECT(CHILDREN(col1@row:col2@row), criteriaRange1, criteria1)), the result is #UNPARSEABLE.
Is there any way to make the formula shorter?