KennyF was telling us:
KennyF nous racontait que :
> I have a number of old documents that have a table in the first page
> footer section. The table is used to track changes to the document
> and has two rows and a number of columns. A new column is added for
> each revision. How do I reference the table in the footer section?
Assuming a regular footer (Not odd/even or first page footer):
Dim FooterTable As Table
Set FooterTable = ActiveDocument.Sections(1) _
.Footers(wdHeaderFooterPrimary).Range.Tables(1)

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
KennyF - 03 Feb 2006 18:30 GMT
Thanks,
That's what I needed.
Ken
> KennyF was telling us:
> KennyF nous racontait que :
[quoted text clipped - 10 lines]
> Set FooterTable = ActiveDocument.Sections(1) _
> .Footers(wdHeaderFooterPrimary).Range.Tables(1)