C
ckj
New to Word 2007 would someone please explain to me how to insert Roman
Numerlas in my document?
Numerlas in my document?
ckj said:New to Word 2007 would someone please explain to me how to insert Roman
Numerlas in my document?
Graham Mayor said:Type a number e.g. 21, select it and run the following macro
Dim oRng As Range
Set oRng = Selection.Range
oRng.Fields.Add oRng, 34, oRng.Text & " \*Roman", False
ActiveWindow.View.ShowFieldCodes = False
it will thus display XX1
Graham Mayor said:Yes, but not everyone is familiar with the use of roman numerals and some
of the larger numbers mayrequire a little thought from someone who does
not use Roman Numerals frequently. Is it quicker to use the macro to work
out the ROMAN equivalent of 1575 or to work out that it is MDLXXV then
type that?
JoAnn Paules said:The good thing about trying to remember the correct Roman numeral is that
helps to keep the mind active. Relying on a macro doesn't really do that.
;-)
--
JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"
Graham Mayor said:Yes, but not everyone is familiar with the use of roman numerals and some
of the larger numbers mayrequire a little thought from someone who does
not use Roman Numerals frequently. Is it quicker to use the macro to work
out the ROMAN equivalent of 1575 or to work out that it is MDLXXV then
type that?
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Doug Robbins - Word MVP said:But writing macros does.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
JoAnn Paules said:The good thing about trying to remember the correct Roman numeral is that
helps to keep the mind active. Relying on a macro doesn't really do that.
;-)
--
JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"
Graham Mayor said:Yes, but not everyone is familiar with the use of roman numerals and
some of the larger numbers mayrequire a little thought from someone who
does not use Roman Numerals frequently. Is it quicker to use the macro
to work out the ROMAN equivalent of 1575 or to work out that it is
MDLXXV then type that?
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Type a number e.g. 21, select it and run the following macro
Dim oRng As Range
Set oRng = Selection.Range
oRng.Fields.Add oRng, 34, oRng.Text & " \*Roman", False
ActiveWindow.View.ShowFieldCodes = False
it will thus display XX1
Isn't it just easier to type XXI ?