powershell-universal
powershell-universal copied to clipboard
New-UDTableColumn SortType should have an option for sorting by number
Summary of the new feature / enhancement
I would like the UDTableColumn to have a SortType of number. Currently there is only DateTime and Alphanumeric. The Alphanumeric doesn't sort numbers by their quantity. For example, the following sorting on numbers from 1-12:
1 10 11 12 2 3 4 5 6 7 8 9
Having a sort type of Number would sort those numbers as the following:
1 2 3 4 5 6 7 8 9 10 11 12
Proposed technical implementation details (optional)
No response