Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 11-10-2021, 09:51 PM
gmayor's Avatar
gmayor gmayor is offline How to determine if a Section number has a field code Windows 10 How to determine if a Section number has a field code Office 2019
Expert
 
Join Date: Aug 2014
Posts: 4,144
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

OK the following should address that issue
Code:
Sub Macro2()
Dim aRng As Range
    Set aRng = ActiveDocument.Range
    With aRng.Find
        .ClearFormatting
        .Text = "Section"
        .MatchWildcards = True
        Do While .Execute
            aRng.End = aRng.End + 1
            aRng.Collapse 0
            aRng.MoveEndWhile "0123456789."
            If aRng.Fields.Count > 0 Then
                If aRng.Fields(1).Type = 3 Then aRng.Font.ColorIndex = wdBlue
            Else
                If Len(aRng) > 0 Then
                    aRng.Font.ColorIndex = wdRed
                    ActiveDocument.Comments.Add _
                            Range:=aRng, _
                            Text:="Missing cross-reference field code"
                End If
            End If
            aRng.Collapse 0
        Loop
    End With
    MsgBox "Done!", vbInformation
    Set aRng = Nothing
End Sub

__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Field Code: Page number for current StyleRef Cosmo Word 4 11-15-2020 03:54 PM
Word 2016: How do I change a REF field code to display a reference to a Roman number as Arabic Peggy Sue Word 1 08-15-2017 09:50 PM
How to determine if a Section number has a field code VBA Code to search for field codes with certain text before the Field code and to change style welcometocandyland Word VBA 4 02-08-2017 06:53 PM
How to determine if a Section number has a field code Is there a way programmatically to determine the footnote number style, if other than arabic numbers gn4619 Word VBA 2 11-23-2015 11:00 PM
How to determine if a Section number has a field code Version number from document filename via field code palanski Word 3 10-15-2014 01:54 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 06:07 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