
09-03-2013, 06:06 PM
|
Expert
|
|
Join Date: Jan 2013
Posts: 440
|
|
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
|