pasting text from Excel in Word header?

后端 未结 1 971
不知归路
不知归路 2021-01-27 02:16

I\'m trying to add Belkin to the header of my word document.

Situation: Excel: A1 = Belkin | Word: header needs to get Belkin

相关标签:
1条回答
  • 2021-01-27 02:41

    here's a quick & dirty Excel VBA to get you going - creating a new word application/word doc and pasting the content of A1 into the header ....

    Sub CreateWordDocWithHeader()
    Dim WApp As Word.Application
    Dim WDoc As Word.Document
    Dim WRng As Word.Range
    
        Set WApp = New Word.Application
        WApp.Visible = True
        Set WDoc = WApp.Documents.Add
        Set WRng = WDoc.Sections(1).Headers(wdHeaderFooterPrimary).Range
        WRng = ActiveSheet.[A1]
    
        Set WRng = Nothing
        Set WDoc = Nothing
        Set WApp = Nothing
    End Sub
    

    Hope this helps .... Good luck miked

    0 讨论(0)
提交回复
热议问题