Insert a letter 'a' after the reference number in the footnote area
I want to insert a letter 'a' after the reference number in the footnote area, a number that is always followed by a space. I use the code here below, but the result I get is not |1a| but |1 a|.
Can someone help? Thanks!
With ftNote.Range
.InsertBefore supLetter 'i.e. the letter a
.Characters(1).Font.Superscript = True
End With
|