View Single Post
 
Old 09-10-2021, 11:05 AM
brent chadwick brent chadwick is offline Windows 8 Office 2013
Advanced Beginner
 
Join Date: Mar 2015
Posts: 86
brent chadwick is on a distinguished road
Default Footnote aligned with decimal

Hey Guys,
I found some code that gives me the type of number and period for footnotes that I like, but I cannot get the decimals to line up such as in single and double digits. I.E.
9.
10.
I have messed with the style and it does not seem to effect it. Here's the code-


Code:
Sub InsertFootnote()
ActiveDocument.Footnotes.Add Range:=Selection.Range
With Selection
   .Paragraphs(1).Range.Font.Reset
   .Paragraphs(1).Range.Characters(2) = ""
   .InsertAfter ". " & vbTab
   .Collapse wdCollapseEnd
End With
End Sub
Reply With Quote