J
Julia
Hi, thanks for your help.
I have the following macro:
If Documents.Count = 0 Then Exit Sub
Dim i As Integer
For i = 1 To ActiveDocument.Sections.Count
With ActiveDocument.Sections(i)
.Footers(wdHeaderFooterFirstPage).Range.Delete
.Footers(wdHeaderFooterPrimary).Range.Delete
End With
Next i
This works great to delete all footers, but now I'm wanting to insert a date
field in all footers (all sections), and can't seem to use the same formula,
substituting the .range.delete of course. What am I doing wrong?? Thanks
again!
I have the following macro:
If Documents.Count = 0 Then Exit Sub
Dim i As Integer
For i = 1 To ActiveDocument.Sections.Count
With ActiveDocument.Sections(i)
.Footers(wdHeaderFooterFirstPage).Range.Delete
.Footers(wdHeaderFooterPrimary).Range.Delete
End With
Next i
This works great to delete all footers, but now I'm wanting to insert a date
field in all footers (all sections), and can't seem to use the same formula,
substituting the .range.delete of course. What am I doing wrong?? Thanks
again!