Could this particular question already be in existence, but just hasn't been found yet? Is there a method for consolidating multiple values into one row of a 2D array with x rows and 2 columns based on them sharing the same element in the first column?
[['Needs Work', 'Joe'], ['Needs Work', 'Jill'], ['Needs Work', 'Jack'], ['Complete', 'Sean'], ['Complete', 'Joe'], ['Not Started', 'Laura'], ['Needs Work', 'Jack']]
The desired output should resemble:
[ [ 'Needs Work', 'Joe,Jill,Jack,Jack' ],
[ 'Complete', 'Sean,Joe' ],
[ 'Not Started', 'Laura' ] ]