View Single Post
 
Old 04-27-2015, 11:13 PM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,101
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 of
Default

A macro containing the following line of code will align the separator to the right. http://www.gmayor.com/installing_macro.htm

Code:
ActiveDocument.Footnotes.Separator.ParagraphFormat.Alignment = wdAlignParagraphRight
If you want the separator and notes re-aligned left then

Code:
Sub FootnotesLeft()
Dim oFn As Footnote
    For Each oFn In ActiveDocument.Footnotes
        oFn.Range.ParagraphFormat.Alignment = wdAlignParagraphLeft
    Next oFn
    ActiveDocument.Footnotes.Separator.ParagraphFormat.Alignment = wdAlignParagraphLeft
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