When I transpose my array 'solverPacks_', it creates columns for Excel. However, the values in the columns are not sorted from high to low...
var transposeToExcel = solverPacks_[0]
.map((_, colIndex) => solverPacks_.map(row => row[colIndex])
.join('\t')
).join('\n');
console.log("transposeToExcel = " + "\n" + transposeToExcel);
Is there a way to sort the numbers from high to low in the columns while transposing? I would like it to look like this (showing only the first column):
4298 4275 4228 4199 4189 4012 4008 3700 3659 3614 3595 3579
Thank you for taking the time to read this! Christina