Hi everyone,
I have a column in which the user selects the countries impacted from a drop-down list. More than one country can be selected. Now, I want to reflect all those countries in the child rows back to the parent row.
Easy enough, just use =JOIN(children()), right?
However, if I do this, it joins the information in the child rows together. If the child row has "Japan" and "South Korea" selected, JOIN(children()) will result in "JapanSouth Korea". Is there a certain delimiter I can use to tell it that these are two different values?