Number sorting issue
-
Hi all,
I’m in a bit of a pickle with sorting numbers and need some suggestions. Essentially I have a column for “network port speed” so the cell values are like the following:
– 10000 Mbps
– 2000 Mbps
– 1000 Mbps
– 100 Mbps
Currently when the column is sorted descending I want the bigger full value number to show first, 10000 Mbps, however it shows 2000 Mbps as the highest value since presumably it has a 2 in front instead of a 1, despite 10000 being a bigger value than 2000. How can I achieve this to sort the bigger full value? For example when sorting descending it shows:
– 2000 Mbps
– 10000 Mbps
– 1000 Mbps
– 100 Mbps
The Mbps text afterwards doesn’t make any difference. I removed it to test and added custom code to sort without it if needed.Thanks,
The topic ‘Number sorting issue’ is closed to new replies.