View Single Post
 
Old 08-27-2019, 07:38 AM
gmaxey gmaxey is offline Windows 10 Office 2016
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,429
gmaxey is a jewel in the roughgmaxey is a jewel in the roughgmaxey is a jewel in the roughgmaxey is a jewel in the rough
Default

Try this:

Code:
Sub Test()
Dim oRng As Range
  ActiveDocument.Styles(wdStyleFootnoteReference).Font.Hidden = False
  Set oRng = ActiveDocument.StoryRanges(wdFootnotesStory)
  With oRng.Find
    .Style = "Footnote Reference"
    While .Execute
      oRng.Characters.Last.Next.Delete
      oRng.Text = vbNullString
    Wend
  End With
  ActiveDocument.Styles(wdStyleFootnoteReference).Font.Hidden = True
  ActiveDocument.ActiveWindow.View.ShowHiddenText = False
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote