I have a group of raw data in excel without headers:
1 3 4 7 9
2 5 6 8 11
10 12
How can I sort to fit my desired result?
1 2 3 4 5
6 7 8 9 10
11 12
I've tried transpose or sort horizontally But cannot get what I want.
If it involves using vba, then how to do it in coding?
Please help! Thank you.