![]() |
#2
|
||||
|
||||
![]()
Try this code
Code:
Sub TagTables() Dim aTbl As Table, bSkip As Boolean, iCount As Integer, i As Integer iCount = ActiveDocument.Tables.Count For i = 1 To iCount Set aTbl = ActiveDocument.Tables(i) aTbl.Select If Not bSkip Then aTbl.Range.Previous(Unit:=wdCharacter, Count:=1).InsertBefore vbCr & "AAA" bSkip = MsgBox("Yes to Extend tag, No to close tag", vbYesNo) = vbYes If Not bSkip Then aTbl.Range.Next(Unit:=wdCharacter, Count:=1).InsertBefore "BBB" & vbCr Else bSkip = MsgBox("Yes to Extend tag, No to close tag", vbYesNo) = vbYes If bSkip = False Then aTbl.Range.Next(Unit:=wdCharacter, Count:=1).InsertBefore "BBB" & vbCr End If If i = iCount - 1 Then bSkip = False End If Next i End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
Tags |
tagging |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Tagging Misspell words | ranjan | Word VBA | 3 | 08-18-2021 06:02 AM |
Word to xml tagging macro | ganesang | Word VBA | 0 | 03-19-2019 04:10 AM |
![]() |
ganesang | Word VBA | 4 | 03-13-2019 02:39 AM |
![]() |
kevinbradley57 | Word VBA | 9 | 09-21-2017 04:58 PM |
Macro for tagging and rearranging selected text for revision | caotico | Word VBA | 0 | 03-28-2012 06:35 PM |