Is there a way to get two fields into one array ? I am trying to get unique names as first element of the array and values (Subset_sum([number]),Subset([name],'uniquename')) as the second element. Is it possible? Previously to go around it I was creating field with both fields joined with a comma and then I was splitting it inside JavaScript, so I had a multidimensional array.
I would like to get an array where first element would be John,5 second element Mary,7 third element John,12. Rest of it I can do in JavaScript (sum). Obviously would be nice if I could put into array first element John,17 and second element Mary,7 , but like I mentioned earlier we can do summing in Javascript.