View Single Post
 
Old 08-05-2020, 03:57 AM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 3,977
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

I agree John, it doesn't work for me in the footnotes either. The paragraph mark at the end of each footnote appears to be a protected species (we can find it but can't replace it with another one).

You might need to use a macro to do the task.
Code:
Sub FixFN()
  Dim aFN As Footnote, aRng As Range
  For Each aFN In ActiveDocument.Footnotes
    Set aRng = aFN.Range
    aRng.Collapse Direction:=wdCollapseEnd
    aRng.MoveStart Unit:=wdCharacter, Count:=-2
    aRng.Text = "). "
  Next aFN
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote