fred3
Member
I have a large number 10-digit number in rows in both contiguous form and separated into 1-digit per column.
I want to reorder the digits in the rows so that the most-frequent digit is first, the next-most frequent is 2nd, etc.
So:
2 5 2 4 4 2 6 6 1 6
Would translate to:
2 2 2 6 6 6 4 4 1 5
And, I want to make it dynamic and not use VBA.
How might that be done?
I want to reorder the digits in the rows so that the most-frequent digit is first, the next-most frequent is 2nd, etc.
So:
2 5 2 4 4 2 6 6 1 6
Would translate to:
2 2 2 6 6 6 4 4 1 5
And, I want to make it dynamic and not use VBA.
How might that be done?