Forum Discussion
KathyB1570
Sep 30, 2024Copper Contributor
Custom Sort for Weight Distribution
I'm trying to figure out a way to sort a list of pallets by weight, but the list needs to have the smallest values at the beginning and end with the highest weights in the middle. Is this possible?
JKPieterse
Sep 30, 2024Silver Contributor
Can you perhaps give us a short list of example numbers and how you expect them to be sorted?
- KathyB1570Sep 30, 2024Copper Contributor
JKPieterse For example, if I have the following pallets to load onto a truck, I first calculate the weight. (First row.) Then I have that chart sorted to list them in ascending order, lowest to highest. (Second row.) Then I have to manually cut and paste every other cell and place them in descending order so that the heaviest pallets are in the center of the trailer and the lighter ones are in the front and back. (Last row.)
- PeterBartholomew1Sep 30, 2024Silver Contributor
Carrying on the same theme, because messy formulas like that are a distraction in your workbook, it would be possible to define your own function 'AlternatingSortĪ»' (say)
AlternatingSortĪ» =LAMBDA(p, LET( stackedSort, VSTACK(SORT(p), SORT(p, , -1)), TAKE(WRAPROWS(stackedSort, 2), , 1) ) ); Workheet formula = AlternatingSortĪ»(pallets)
A slight change to the function would allow it to output Pallet IDs as well as their weights.
- PeterBartholomew1Sep 30, 2024Silver Contributor
Just in case a 365 user comes across this now or in the future, here is the workbook.