Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 08-27-2019, 06:34 PM
gmaxey gmaxey is online now Ignore Table and Table Caption For Revisions Windows 10 Ignore Table and Table Caption For Revisions Office 2016
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,601
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

I thought you wanted to omit (delete tables) and omit (delete table captions). Try this:

Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim i As Long
Dim wdDoc As Document
  Set wdDoc = ActiveDocument
  For i = 1 To wdDoc.Paragraphs.Count
  If Not wdDoc.Paragraphs(i).Range.Information(wdWithInTable) Then
    If wdDoc.Paragraphs(i).Range.Fields.Count > 0 Then
      If Not fcnEvalForTableCaption(wdDoc.Paragraphs(i).Range) Then
        'Process
      End If
    Else
       'Process
    End If
    
   'process revisions
  End If
Next i

lbl_Exit:
  Exit Sub
  
End Sub

Function fcnEvalForTableCaption(oRng As Range)
Dim oFld As Field
  fcnEvalForTableCaption = False
  For Each oFld In oRng.Fields
    If oFld.Type = 12 Then
      If InStr(oFld.Code, "Table") Then
        fcnEvalForTableCaption = True
        Exit For
      End If
    End If
  Next
End Function
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote
 

Tags
track changes; word



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ignore Table and Table Caption For Revisions Question about table caption problem Teaboar Word 8 08-22-2019 06:25 AM
Ignore Table and Table Caption For Revisions Connecting a Table Caption to the table MikeD Word Tables 2 06-22-2014 10:56 AM
Ignore Table and Table Caption For Revisions How to make the Caption and its text have the same width as the table? Jamal NUMAN Word 1 04-24-2011 06:44 PM
Ignore Table and Table Caption For Revisions Caption and Table of Figures issue reece22345 Word 3 04-15-2011 12:18 AM
Spacing between table and caption EtienneOBrien Word Tables 0 12-27-2008 01:58 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 01:48 PM.


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