K
klam
I added this macro (from a reference article on this site) as I wanted to
add a TAB before the Footnote Text, that's all.
Sub InsertFootnote()
ActiveDocument.Footnotes.Add Range:=Selection.Range
With Selection
.Paragraphs(1).Range.Characters(2) = ""
.InsertAfter vbTab
.Collapse wdCollapseEnd
End With
End Sub
Then I noticed my Tables do not break where they should: many pages have
tables that end much before the page does, and some pages the Tables run
right through the footer and off the bottom of the page.
When I "rem'd" all the statements, my tables worked fine. So can someone pls
tell me what to change in this macro so it doesn't bugger up my page length
and it still puts a TAB btwn the Footnote Reference and Footnote Text?
TIA,
klam
add a TAB before the Footnote Text, that's all.
Sub InsertFootnote()
ActiveDocument.Footnotes.Add Range:=Selection.Range
With Selection
.Paragraphs(1).Range.Characters(2) = ""
.InsertAfter vbTab
.Collapse wdCollapseEnd
End With
End Sub
Then I noticed my Tables do not break where they should: many pages have
tables that end much before the page does, and some pages the Tables run
right through the footer and off the bottom of the page.
When I "rem'd" all the statements, my tables worked fine. So can someone pls
tell me what to change in this macro so it doesn't bugger up my page length
and it still puts a TAB btwn the Footnote Reference and Footnote Text?
TIA,
klam