View Single Post
 
Old 09-03-2013, 06:06 PM
fumei fumei is offline Windows 7 64bit Office XP
Expert
 
Join Date: Jan 2013
Posts: 440
fumei is on a distinguished road
Default

No, you can not use AutoCaption for existing tables. It is automatic for NEW tables. You can add Caption though to existing tables using something like:
Code:
Sub addCAP()
Dim oTbl As Table
For Each oTbl In ActiveDocument.Tables
oTbl.Select
Selection.InsertCaption Label:="Table", TitleAutoText:="", Title:="", _
Position:=wdCaptionPositionAbove
Next
End Sub
Reply With Quote