CustomX
CustomX

Reputation: 10113

pasting text from Excel in Word header?

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

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

Upvotes: 1

Views: 5728

Answers (1)

MikeD
MikeD

Reputation: 8941

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

Upvotes: 3

Related Questions