Hi All,
I am struggling with creating a block of code that would sort my array, count unique values, and return them in a text string.
For example: I have this array of fruits:
["Apples", "Bananas", "Berry", "Bananas", "Apples", "Bananas"]
What I would like to get is this output:
Apples x 2, Bananas x 3, Berry x 1
I'm not sure how to get around to this, if it was Feature Set I would use the GroupBy function...