Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

endnote number format

0 views
Skip to first unread message

DBeck

unread,
Jun 17, 2002, 4:16:32 PM6/17/02
to
I have looked in Word help but cannot figure out how to
change the number format of all of my endnotes as a group
and when I select the endnote number and try to change the
format from the default the new number seems to be italic
and/or not what I want.

Doug Robbins - Word MVP

unread,
Jun 19, 2002, 8:48:16 AM6/19/02
to
Hi DBeck,

Select an endnote number and right click and select Style and then modify
the format of the Style and you should be able to get it to be what you
want.

Please post any response to the newsgroups for the benefit of others who may
also be following the thread.

Hope this helps,
Doug Robbins - Word MVP
"DBeck" <dab...@vcu.edu> wrote in message
news:f53001c2163b$df31a750$9be62ecf@tkmsftngxa03...

david beck

unread,
Jun 19, 2002, 4:30:53 PM6/19/02
to
I guess I need to clarify my problem; what you suggested
worked but isn't the answer to my problem. What I'd like
to do is change the style of the list of endnotes. At
present it appears that the number style of the endnote is
the same as that of the endnote reference in the text of
the manuscript. I need to change the numbering of the list
of endnotes so that the numbers aren't in superscript.
Maybe I need to change the style of the document?
>.
>

Suzanne S. Barnhill

unread,
Jun 19, 2002, 5:07:39 PM6/19/02
to
See http://www.mvps.org/word/FAQs/MacrosVBA/UnSuperscptFnotes.htm.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word

"david beck" <dab...@vcu.edu> wrote in message
news:1016b01c217d0$3566c840$b1e62ecf@tkmsftngxa04...

David Beck

unread,
Jun 20, 2002, 9:01:59 AM6/20/02
to
Thanks,I am a user not a programmer so it took some
searching to find where you steered me. Unfortunately I
have all of my endnotes inserted, 282 of them, now I
discover the problem. Is there a macro I can download to
change them or will I have to go back and redo all of the
endnotes - a task which I don't relish.
>-----Original Message-----
>See
http://www.mvps.org/word/FAQs/MacrosVBA/UnSuperscptFnotes.h
>.
>

Suzanne S. Barnhill

unread,
Jun 20, 2002, 12:01:19 PM6/20/02
to
If you hang around long enough, someone will probably provide a macro. I'm
not a programmer, either, so I can't do that. I would not, however, have
thought that it required programming skill to click on an URL in a NG
message.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word

"David Beck" <dab...@vcu.edu> wrote in message
news:ed3f01c2185a$a9f31a80$a4e62ecf@tkmsftngxa06...

david Beck

unread,
Jun 20, 2002, 12:39:46 PM6/20/02
to
Yeah, nice talk. I tried but the address didn't come
through on your reply as a hyperlink and when I
copy/pasted it to the address window I got page not found.
I eventually found it and didn't mean to annoy you.
>.
>

Suzanne S. Barnhill

unread,
Jun 20, 2002, 1:20:10 PM6/20/02
to
Ah, I see you're posting through the Microsoft Communities portal. One of
its (many) current limitations, unfortunately, is nonworking links. And it's
possible the site was experiencing problems when you did finally try. FWIW,
if you connect to the NGs directly using a newsreader (and an account set up
for msnews.microsoft.com), you'll not only be able to click on URLs but also
find reading NGs much more efficient. For more, see these pages (more
unclickable URLs):

For information on how to view a newsgroup:
http://support.microsoft.com/support/news/howto/default.asp

For a description of the Word newsgroups and tips on posting:
http://www.mvps.org/word/FindHelp/Posting.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word

"david Beck" <dab...@vcu.edu> wrote in message
news:ee8f01c21879$161353b0$37ef2ecf@TKMSFTNGXA13...

david Beck

unread,
Jun 20, 2002, 3:05:42 PM6/20/02
to
thank you I'll try to do so
>> >> >> >-----OrigÍ{ wÀ | dnW>ü 3>¬ã
> ì inal Message-----

Doug Robbins - Word MVP

unread,
Jun 21, 2002, 6:06:27 AM6/21/02
to
Hi David,

The following macro will replace the endnotes with "notes" numbered in the
format that you want:

Dim aendnote As Endnote
For Each aendnote In ActiveDocument.Endnotes
ActiveDocument.Range.InsertAfter vbCr & aendnote.Index & vbTab &
aendnote.Range
aendnote.Reference.InsertBefore "a" & aendnote.Index & "a"
Next aendnote
For Each aendnote In ActiveDocument.Endnotes
aendnote.Reference.Delete
Next aendnote
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find.Replacement.Font
.Superscript = True
End With
With Selection.Find
.Text = "(a)([0-9]{1,})(a)"
.Replacement.Text = "\2"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchWildcards = True
End With
Selection.Find.Execute Replace:=wdReplaceAll

As these "notes" will no longer be true endnotes, you should save the
document before running the macro and after running the macro, save the
document with another name in case you need to go back to the original and
make some changes.

Please post any response to the newsgroups for the benefit of others who may
also be following the thread.

Hope this helps,
Doug Robbins - Word MVP

"david Beck" <dab...@vcu.edu> wrote in message

news:efeb01c2188d$79843cc0$a4e62ecf@tkmsftngxa06...

David Beck

unread,
Jun 21, 2002, 8:30:51 AM6/21/02
to
Thank you. I copy / pasted the macro beginning
with "Dim......" through "......ReplaceAll" into the macro
editor pane, I don't know if this was correct or not, when
I tried to run the macro I got syntax error and the macro
stopped at the "ActiveDocument.Range.InsertAfter vbCr &
aendnote.Index & vbTab ......" line. I probably did
something wrong. I am not familiar with Vb or anything
other than simple recorded macros so ......?
>>> >"David Í{ wÀ È lÝÃn yºnÌ3@
> ì Beck" <dab...@vcu.edu> wrote in message

Suzanne S. Barnhill

unread,
Jun 21, 2002, 9:39:41 AM6/21/02
to
You may have to patch up the macro to repair line breaks introduced by
wrapping in the message. It looks like the line you cite needs to have
"aendnote.Range" at the end.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://www.mvps.org/word

"David Beck" <dab...@vcu.edu> wrote in message
news:10b0301c2191f$7ada6990$9ae62ecf@tkmsftngxa02...

>>> >"David ヘ{掫タ ネ lンテn yコnフ3@
> � Beck" <dab...@vcu.edu> wrote in message

david Beck

unread,
Jun 21, 2002, 9:55:23 AM6/21/02
to
I tried it again and after saving it in the normal
template it worked. However there is a another problem.
Not only does my document have endnotes it also has cross
references to those endnotes. While the macro did almost
eveything I wanted to the numbering of the endnote text
the cross references now all have "error!Bookmark not
defined" instead of the endnote number.Aaaaggghh!!!!
>>>Word MVPÍ{ wÀ D ·õptS q$b¿
> ì FAQ site: http://www.mvps.org/word
>.
>

David Beck

unread,
Jun 21, 2002, 10:15:44 AM6/21/02
to
Yes I discovered a line break and after correcting it the
macro worked but not without introducing another problem.
I got the endnote list looking good but apparently the
macro converted endnotes to "just text"? and now cross
references don't work because the endnote for the cross
reference dosen't exist anymore.
>>>unclickÍ{ wÀ " ´·Xf [f\4ý ìZ able URLs):

Doug Robbins - Word MVP

unread,
Jun 22, 2002, 7:25:45 AM6/22/02
to
Hi David,

To overcome your crossreference problem I suggest that you use the macro
only immediately before printing the document and that before running the
macro, you unlink all of the fields in the document so that you do not get
the error message when about the bookmarks no longer existing.

Please post any response to the newsgroups for the benefit of others who may
also be following the thread.

Hope this helps,
Doug Robbins - Word MVP
"david Beck" <dab...@vcu.edu> wrote in message

news:f24b01c2192b$49b5bb10$a5e62ecf@tkmsftngxa07...

>>>Word MVPヘ{掫タ D キtS q$bソ
> � FAQ site: http://www.mvps.org/word


>>>
>>>"david Beck" <dab...@vcu.edu> wrote in message
>>>news:ee8f01c21879$161353b0$37ef2ecf@TKMSFTNGXA13...
>>>> Yeah, nice talk. I tried but the address didn't come
>>>> through on your reply as a hyperlink and when I
>>>> copy/pasted it to the address window I got page not
>>found.
>>>> I eventually found it and didn't mean to annoy you.
>>>> >-----Original Message-----
>>>> >If you hang around long enough, someone will probably
>>>> provide a macro. I'm
>>>> >not a programmer, either, so I can't do that. I would
>>>> not, however, have
>>>> >thought that it required programming skill to click
on
>>an
>>>> URL in a NG
>>>> >message.
>>>> >
>>>> >--
>>>> >Suzanne S. Barnhill
>>>> >Microsoft MVP (Word)
>>>> >Words into Type
>>>> >Fairhope, Alabama USA
>>>> >Word MVP FAQ site: http://www.mvps.org/word
>>>> >

>>>> >"David ヘ{掫タ ネ lンテn yコnフ3@

>> � Beck" <dab...@vcu.edu> wrote in message

0 new messages