Thread: [Solved] Macro to change font size
View Single Post
 
Old 06-30-2023, 07:06 AM
Teknogamer Teknogamer is offline Windows 11 Office 2016
Novice
 
Join Date: Jun 2023
Posts: 11
Teknogamer is on a distinguished road
Default

Ok managed to solve this myself by googling it. In case anyone else gets stuck with this I learned that apparently VB has different character attributes for right to left languages, and the term bi needs to be added.

So the following change made it work:
Code:
Sub Size14()
'
' Size14 Macro
'
'
    Selection.Font.Size = 14
    Selection.Font.SizeBi = 14
End Sub
(Source: vba - How can I change the font size of non-English words? - Stack Overflow)
Reply With Quote