Multiple Line Footer

W

W Arrington

I want to insert 3 separate lines of text into the footer using a macro. How
do I do this?
 
A

Andrew V

Just an example:

ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).Range.Text _
= lineA & vbCr & "This is line B" & vbCr & lineC

Andrew
 
Top