I am trying to sort my report in a specified order. I am dealing with unique asset numbers and need them to show up on the report in a specific order. Example:
First #'s... (1234-9999)
then all numbers with a "0S" in front (0S1234-0S9999)
then all numbers with a "0X" in front (0X1234-0X9999)
then all numbers with a "S" in front (S01234-S9999)
then all numbers with a "X" in front (X01234-X9999)
By sorting the report by ascending or descending I can not achieve my desired order. So I have been attempting at using specified order. But the limitation here is that I can not select:
first (all integers)
first all numbers with (all starting with "0S"
first all numbers with (all starting with "0X"
first all numbers with (all starting with "S"
first all numbers with (all starting with "X"
The only way I see that I can use specified sort is to pick each number in the order that I need. Is there a way to pick by commonalities?
Any other suggestions?
First #'s... (1234-9999)
then all numbers with a "0S" in front (0S1234-0S9999)
then all numbers with a "0X" in front (0X1234-0X9999)
then all numbers with a "S" in front (S01234-S9999)
then all numbers with a "X" in front (X01234-X9999)
By sorting the report by ascending or descending I can not achieve my desired order. So I have been attempting at using specified order. But the limitation here is that I can not select:
first (all integers)
first all numbers with (all starting with "0S"
first all numbers with (all starting with "0X"
first all numbers with (all starting with "S"
first all numbers with (all starting with "X"
The only way I see that I can use specified sort is to pick each number in the order that I need. Is there a way to pick by commonalities?
Any other suggestions?