Hello,
I have an output file I'm trying to sort ascending on a column that basically lists the alphabet and after 'Z' it transitions to AA, BB, CC, etc. Right now, the sort is placing the double letters at the top, showing as..
AA
BB
CC
A
B
C
Ideally, I'd like the double letter values to sort after the single letter values such as...
X
Y
Z
AA
BB
CC
Is there a way to accomplish this?