View Single Post
  #10   Report Post  
Posted to microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default How do I insert Roman Numerals?

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


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Terry Farrell" wrote in message
...
But the point is that XX1 is never correct: it has to be XXI

--
Terry Farrell - MSWord MVP

"Graham Mayor" wrote in message
...
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
Word MVP web site http://word.mvps.org



"Gordon" wrote in message
...

"Graham Mayor" wrote in message
...
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 ?