How do I insert Roman Numerals?

  • Thread starter Thread starter ckj
  • Start date Start date
C

ckj

New to Word 2007 would someone please explain to me how to insert Roman
Numerlas in my document?
 
ckj said:
New to Word 2007 would someone please explain to me how to insert Roman
Numerlas in my document?

Just type them...
I
II
III
IV
V
VI
VII
VIII
IX
X
XI

etc etc.
 
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 - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
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


Isn't it just easier to type XXI ?
 
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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
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?

<sigh> you're right - everyone should have a classical education.... :-(
 
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.
;-)
 
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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
If only Outlook Express supported the macros, we might not have such typos
:)

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Yes, they do. :-)

--
JoAnn Paules
MVP Microsoft [Publisher]
Tech Editor for "Microsoft Publisher 2007 For Dummies"



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 ?
 
Back
Top