How do I sort a column if I have spaces between numbers? For example, I have 130,000 < 18,000 > 170
How do I sort a column if I have spaces between numbers? For example, I have 130,000 < 18,000 > 170
itbshimm
Posts: 1Questions: 1Answers: 0
How do I sort a column if I have spaces between numbers? For example, I have 100 00 < 11 000 < 170 000 < 19 000.
Here's an example of my code (https://codepen.io/it_shimm/pen/QWOyNpa) if you're interested. Help me please!!!
Answers
Use
columns.render
to generate orthogonal data for thesort
operation. This thread has a similar question with a running example.Kevin