I have a field that will have a format similar to the following:
AA-1
AA-2
AA-10
AA-1 (1)
AA-10 (1)
AA-2 (12)
Etc.
Essentially, it is 2 Letters, a -, then a number (1 or 2 digits). Optionally there is a space following by 1 or 2 digits inside of ( ).
I would like to add a field that calculates a sort order based on the left value - similar to the following:
We want to be able to sort the column. Any assistance would be appreciated.
AA-1
AA-2
AA-10
AA-1 (1)
AA-10 (1)
AA-2 (12)
Etc.
Essentially, it is 2 Letters, a -, then a number (1 or 2 digits). Optionally there is a space following by 1 or 2 digits inside of ( ).
I would like to add a field that calculates a sort order based on the left value - similar to the following:
Value | Sort Value |
AA-1 | AA-01 |
AA-2 | AA-02 |
AA-10 | AA-10 |
AA-1 (1) | AA-01 (01) |
AA-10 (1) | AA-10 (01) |
AA-2 (12) | AA-02 (12) |
We want to be able to sort the column. Any assistance would be appreciated.