Excel VBA, Reading Order
Contents
Left to Right, xlLTR:
The following line of code applies the left to right reading order format to cell A1:
Range("A1").ReadingOrder = xlLTR
–
Right to Left, xlRTL:
The following line of code applies the right to left reading order format to cell A1:
Range("A1").ReadingOrder = xlRTL
–
Context, xlContext:
The following line of code applies the context reading order format to cell A1:
Range("A1").ReadingOrder = xlContext
See also:
If you need assistance with your code, or you are looking for a VBA programmer to hire feel free to contact me. Also please visit my website www.software-solutions-online.com
One thought on “Excel VBA, Reading Order”