I want to insert 3 separate lines of text into the footer using a macro. How do I do this?
W W Arrington Nov 16, 2006 #1 I want to insert 3 separate lines of text into the footer using a macro. How do I do this?
A Andrew V Nov 16, 2006 #2 Just an example: ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range.Text _ = lineA & vbCr & "This is line B" & vbCr & lineC Andrew
Just an example: ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range.Text _ = lineA & vbCr & "This is line B" & vbCr & lineC Andrew