I have a column that contains address "line 2" type values. this column can contain values like #431, UNIT 203, and APT. C and of course it can contain blank (or empty string) values also. i need an answer to two questions:
- How would you expect a mixed values like this to be sorted (i.e. blank or pound signs on top when ascending)?
- How would i pull this off with a custom parser?
currently with the default parser (i'm assuming the string parser), it is ordering the values pound signs, blanks, and then a-z values when in ascending order. i would think that it would blanks, pound signs, and then a-z values.