I created a VBA code to automatically sort(ascending order) a column containing Traditional Chinese characters on Excel 2003. It works well but when I tried running the code on a Excel 2013 version the sorted values differs versus on the sorted values on the Office 2003. I tried using
and
but still the values are not sorted correctly.
Am I out of luck on solving this issue?
Any help is well appreciated.
Thanks.
Code:
Range("A2:A30").SortSpecial SortMethod:=xlPinYin
Code:
Range("D182:D187").SortSpecial SortMethod:=xlStroke
Am I out of luck on solving this issue?
Any help is well appreciated.
Thanks.
Comment