Join() compatibility for non-text elements

Right now, List("A","B","C").Join("-") is equivalent to "A" + "-" + "B" + "-" + "C".
Changing that to Concatenate("A", "-", "B", "-", "C") would expand usability of the Join() formula without any major differences and with 100% backwards compatibility.

2 Likes