I have a group of coordinates for example :
10,40; 9,27; 5,68; 7,55; 8,15;
How do I sort those coordinates without losing the correct X-Axis of the sorted Y-Axis.
From the example above I want to sort the coordinates so the correct output will be:
8,15; 9,27; 10,40; 7,55; 5,68.
Any suggestion will be greatly appreciated. Thank you.