Hi there
Trying to add a footnote reference in the bookmark [SymbolAst]
I basically have three consecutive bookmarksm: [SymbolA][SymbolB][SymbolAst]
This code will add the asterisk but before SymbolB?
I have tried r.End and r.End-1 also
Code:
If CheckBox13 = True Then
If BookmarkExists("SymbolAst") Then
Dim r As Range
Set r = ActiveDocument.Bookmarks("SymbolAst").Range
ActiveDocument.Footnotes.Add Range:=r, _
Text:=TextBox4.Value, _
Reference:="*"
Else
MsgBox "Nope"
End If
End If
Thanks