Sorting
Posted: Thu Jul 15, 2004 5:09 pm
I have run across an issue that I haven^t found a solution to. We have an alphanumeric field that we want to sort alphabetically. When we have the value totally numeric it doesn^t sort it correctly. ____Example: "100", "10100", "102"...____I want the output to be: "100", "102", "10100", so forth and the problem is that this alphanumeric field can be 20 characters long and have alpha characters too, not just the numeric ones. I thought of using the VAL function but that obviously won^t work in this case.____Guidance?