Reply
 
Thread Tools Display Modes
  #1   Report Post  
Opinicus
 
Posts: n/a
Default Multiple asterisk footnotes

{Using Word 2002 (XP) with SP3.}

How do you get Word to use multiple asterisks in footnotes
rather than numbers or the asterisk-dagger sequence? I found
this macro on a Word forum
(http://www.talkaboutsoftware.com/gro...tting.longdocs)
and it's pretty good at toggling between the multiple
asterisk format and other formats but it has a problem in
that I doesn't restart the sequence on a new page even if I
select that option in the footnote menu.

Is there another or better way to get multiple-asterix
footnotes that restart on each page/section?

quote
Sub ToggleAsteriskFootnotes()
Dim myFootnote As Footnote
Dim boolCustom As Boolean
Dim i As Long, iOld As Long
' first footnote reference = "*" ?
boolCustom = _
(AscW(ActiveDocument.Footnotes(1).Reference.Text) = 42)
If boolCustom = True Then
For i = ActiveDocument.Footnotes.Count To 1 Step -1
Set myFootnote = ActiveDocument.Footnotes(i)
myFootnote.Range.Copy
myFootnote.Reference.Select
myFootnote.Delete
ActiveDocument.Footnotes.Add Selection.Range
Selection.Footnotes(1).Range.Paste
ActiveDocument.Footnotes(i).Reference.Font.Name = _
ActiveDocument.Styles(wdStyleFootnoteReference).Fo nt.Name
Next i
Else
For i = ActiveDocument.Footnotes.Count To 1 Step -1
iOld = ActiveDocument.Footnotes(i).Index
Set myFootnote = ActiveDocument.Footnotes(i)
myFootnote.Range.Copy
myFootnote.Reference.Select
myFootnote.Delete
ActiveDocument.Footnotes.Add _
Range:=Selection.Range, _
Reference:=String(iOld, "*")
Selection.Footnotes(1).Range.Paste
ActiveDocument.Footnotes(i).Reference.Font.Name = _
ActiveDocument.Styles(wdStyleFootnoteReference).Fo nt.Name
Next i
End If
End Sub
/quote
--
Bob
Kanyak's Doghouse
http://www.kanyak.com

Attached Files
File Type: txt ToggleAsteriskFootnotes.txt (1.0 KB, 139 views)
  #2   Report Post  
Suzanne S. Barnhill
 
Posts: n/a
Default

You would be better advised to continue in the original thread in
formatting.longdocs. You are unlikely to get the answer you want here, as
this newsgroup is now primarily populated by users with the most basic Word
questions, and many of the more knowledgeable users don't even read it
because of the high traffic.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Opinicus" wrote in message
...
{Using Word 2002 (XP) with SP3.}

How do you get Word to use multiple asterisks in footnotes
rather than numbers or the asterisk-dagger sequence? I found
this macro on a Word forum

(http://www.talkaboutsoftware.com/gro...formatting.lon
gdocs)
and it's pretty good at toggling between the multiple
asterisk format and other formats but it has a problem in
that I doesn't restart the sequence on a new page even if I
select that option in the footnote menu.

Is there another or better way to get multiple-asterix
footnotes that restart on each page/section?

quote
Sub ToggleAsteriskFootnotes()
Dim myFootnote As Footnote
Dim boolCustom As Boolean
Dim i As Long, iOld As Long
' first footnote reference = "*" ?
boolCustom = _
(AscW(ActiveDocument.Footnotes(1).Reference.Text) = 42)
If boolCustom = True Then
For i = ActiveDocument.Footnotes.Count To 1 Step -1
Set myFootnote = ActiveDocument.Footnotes(i)
myFootnote.Range.Copy
myFootnote.Reference.Select
myFootnote.Delete
ActiveDocument.Footnotes.Add Selection.Range
Selection.Footnotes(1).Range.Paste
ActiveDocument.Footnotes(i).Reference.Font.Name = _
ActiveDocument.Styles(wdStyleFootnoteReference).Fo nt.Name
Next i
Else
For i = ActiveDocument.Footnotes.Count To 1 Step -1
iOld = ActiveDocument.Footnotes(i).Index
Set myFootnote = ActiveDocument.Footnotes(i)
myFootnote.Range.Copy
myFootnote.Reference.Select
myFootnote.Delete
ActiveDocument.Footnotes.Add _
Range:=Selection.Range, _
Reference:=String(iOld, "*")
Selection.Footnotes(1).Range.Paste
ActiveDocument.Footnotes(i).Reference.Font.Name = _
ActiveDocument.Styles(wdStyleFootnoteReference).Fo nt.Name
Next i
End If
End Sub
/quote
--
Bob
Kanyak's Doghouse
http://www.kanyak.com


  #3   Report Post  
Klaus Linke
 
Posts: n/a
Default

Right... I probably wouldn't have looked at this thread if I hadn't seen the
post in .formatting.longdocs first.

This group is really getting too much ;-)

Klaus


"Suzanne S. Barnhill" wrote:
You would be better advised to continue in the original thread in
formatting.longdocs. You are unlikely to get the answer you want here, as
this newsgroup is now primarily populated by users with the most basic
Word questions, and many of the more knowledgeable users don't even
read it because of the high traffic.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Opinicus" wrote in message
...
{Using Word 2002 (XP) with SP3.}

How do you get Word to use multiple asterisks in footnotes
rather than numbers or the asterisk-dagger sequence? I found
this macro on a Word forum

(http://www.talkaboutsoftware.com/gro...formatting.lon
gdocs)
and it's pretty good at toggling between the multiple
asterisk format and other formats but it has a problem in
that I doesn't restart the sequence on a new page even if I
select that option in the footnote menu.

Is there another or better way to get multiple-asterix
footnotes that restart on each page/section?

quote
Sub ToggleAsteriskFootnotes()
Dim myFootnote As Footnote
Dim boolCustom As Boolean
Dim i As Long, iOld As Long
' first footnote reference = "*" ?
boolCustom = _
(AscW(ActiveDocument.Footnotes(1).Reference.Text) = 42)
If boolCustom = True Then
For i = ActiveDocument.Footnotes.Count To 1 Step -1
Set myFootnote = ActiveDocument.Footnotes(i)
myFootnote.Range.Copy
myFootnote.Reference.Select
myFootnote.Delete
ActiveDocument.Footnotes.Add Selection.Range
Selection.Footnotes(1).Range.Paste
ActiveDocument.Footnotes(i).Reference.Font.Name = _
ActiveDocument.Styles(wdStyleFootnoteReference).Fo nt.Name
Next i
Else
For i = ActiveDocument.Footnotes.Count To 1 Step -1
iOld = ActiveDocument.Footnotes(i).Index
Set myFootnote = ActiveDocument.Footnotes(i)
myFootnote.Range.Copy
myFootnote.Reference.Select
myFootnote.Delete
ActiveDocument.Footnotes.Add _
Range:=Selection.Range, _
Reference:=String(iOld, "*")
Selection.Footnotes(1).Range.Paste
ActiveDocument.Footnotes(i).Reference.Font.Name = _
ActiveDocument.Styles(wdStyleFootnoteReference).Fo nt.Name
Next i
End If
End Sub
/quote
--
Bob
Kanyak's Doghouse
http://www.kanyak.com




Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
footnotes Placement Problem, Footnote Palced to high Jeremy Microsoft Word Help 0 January 21st 05 03:13 PM
how do i use footnotes and footers together? Tom The Appraiser Page Layout 2 January 12th 05 09:40 PM
How do you view only footnotes and/or make a list of footnotes? Secretary short on time. Microsoft Word Help 2 December 28th 04 09:50 PM
footnotes with multiple sections dcn1396 Microsoft Word Help 3 December 20th 04 01:47 AM
Multiple docs open multiple words Ron Smith New Users 2 December 11th 04 09:21 PM


All times are GMT +1. The time now is 03:50 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"