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)