Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 03-15-2022, 04:51 PM
Guessed's Avatar
Guessed Guessed is offline Table Tagging Windows 10 Table Tagging Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,176
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default


Assuming you want to start from the current selection position.
Code:
Sub TagTables2()
  Dim aTbl As Table, bSkip As Boolean, iCount As Integer, i As Integer, aRng As Range
  Set aRng = ActiveDocument.Range(Selection.Start, ActiveDocument.Range.End)
  bSkip = False
  iCount = aRng.Tables.Count
  For Each aTbl In aRng.Tables
    i = i + 1
    aTbl.Select
    If bSkip = False Then aTbl.Range.Previous(Unit:=wdCharacter, Count:=1).InsertBefore vbCr & "AAA"
    bSkip = MsgBox("Yes to Extend tag, No to stop and close tag", vbYesNo) = vbYes
    If i = iCount Or Not bSkip Then
      aTbl.Range.Next(Unit:=wdCharacter, Count:=1).InsertBefore "BBB" & vbCr
      Exit For
    End If
  Next aTbl
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote
Reply

Tags
tagging



Similar Threads
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
Table Tagging Need macro for XML tagging in word doc ganesang Word VBA 4 03-13-2019 02:39 AM
Table Tagging Code to find a named (bookmarked?) table, replicate a row or table, and delete a specified table. 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

Other Forums: Access Forums

All times are GMT -7. The time now is 09:36 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft