How do I insert Roman Numerals?

C

ckj

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

Gordon

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

Graham Mayor

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Gordon

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

Graham Mayor

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Gordon

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.... :-(
 
J

JoAnn Paules [MVP]

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.
;-)
 
D

Doug Robbins - Word MVP

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
G

Graham Mayor

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

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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
J

JoAnn Paules [MVP]

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 ?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top