I am trying to use vba in order to collect text from excel and put it in a word document.
using the following script, I get the the style to affect only the English letters but the letters in Hebrew does not follow.
Sub WriteToWord()
    Dim wordApp As Object
    Dim mydoc As Object
    Set wordApp = CreateObject("Word.Application")
    wordApp.Visible = True
    wordApp.Activate
    Set mydoc = wordApp.Documents.Add()
    With wordApp.Selection
        .Font.Size = 18
        .Font.Bold = True
        .TypeText ("a")
        .TypeText ("חדש")
    End With
End Sub
 
    