Quote:
You could address the footer via code like:
Code:
Code:
Const wdHeaderFooterPrimary As Long = 1
…
With .Sections.First.Footers(wdHeaderFooterPrimary).Range
'code that populates footer
End With
before the final 'End With'
|
I tried below
Code:
With .Sections.First.Footers(1).Range
'code that populates footer
End With
i get error 438 "object doesn't support this property or method
Now what to do ?
SamD