footnotes macro

J

Jean-Paul Darcis

Hi,

I found this interesting macro on
http://word.mvps.org/FAQS/MacrosVBA/UnSuperscptFnotes.htm.

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

However, it does not seem to work with Word 2003.

Does anybody know why and how to correct it? Yes, I did ask the question
on the MVP site ...

Regards
--
*-*-*-*-*-*-*-*-*-*
Jean-Paul Darcis
Keep your documents and emails lean and efficient!
Focus on the content, not on fluff, and zip!
*-*-*-*-*-*-*-*-*-*
 
G

Graham Mayor

Change the name to

Sub InsertFootnoteNow()

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
J

Jean-Paul Darcis

Thanks!
--
*-*-*-*-*-*-*-*-*-*
Jean-Paul Darcis
Keep your documents and emails lean and efficient!
Focus on the content, not on fluff, and zip!
*-*-*-*-*-*-*-*-*-*
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top