Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
That70sHeidi That70sHeidi is offline
external usenet poster
 
Posts: 36
Default Toggle Units of Measurements

I have some documents that need to be worked on in centimeters, and some that
need to be worked on in inches. I know where to find this change, but is
there a shortcut button or keyboard shortcut to toggle this on and off? I
need to change back and forth every 10 minutes or so.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Toggle Units of Measurements

I can sympathize, as I often wish it were easier to do this when I'm trying
to research a question for someone who uses metric units, but AFAIK there is
no real shortcut. One thing I did do in Word 2003 that helps a lot is add
the Options dialog to my Menu Bar, so that it's one click to open it; if you
have the General tab selected, then it's a couple of clicks to change the
measurement unit. In Windows 2007, I added Word Options to the QAT, but it's
still a pretty long slog to find anything.

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

"That70sHeidi" wrote in message
...
I have some documents that need to be worked on in centimeters, and some
that
need to be worked on in inches. I know where to find this change, but is
there a shortcut button or keyboard shortcut to toggle this on and off? I
need to change back and forth every 10 minutes or so.


  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Toggle Units of Measurements

I can sympathize, as I often wish it were easier to do this when I'm trying
to research a question for someone who uses metric units, but AFAIK there is
no real shortcut. One thing I did do in Word 2003 that helps a lot is add
the Options dialog to my Menu Bar, so that it's one click to open it; if you
have the General tab selected, then it's a couple of clicks to change the
measurement unit. In Windows 2007, I added Word Options to the QAT, but it's
still a pretty long slog to find anything.

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

"That70sHeidi" wrote in message
...
I have some documents that need to be worked on in centimeters, and some
that
need to be worked on in inches. I know where to find this change, but is
there a shortcut button or keyboard shortcut to toggle this on and off? I
need to change back and forth every 10 minutes or so.


  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Toggle Units of Measurements

That70sHeidi wrote:
I have some documents that need to be worked on in centimeters, and
some that need to be worked on in inches. I know where to find this
change, but is there a shortcut button or keyboard shortcut to toggle
this on and off? I need to change back and forth every 10 minutes or
so.


Use the steps at http://www.gmayor.com/installing_macro.htm to install this
macro in your Normal template:

Sub ToggleMeasurementUnits()
If Options.MeasurementUnit = wdCentimeters Then
Options.MeasurementUnit = wdInches
Else
Options.MeasurementUnit = wdCentimeters
End If
End Sub

Then use the steps at
http://www.word.mvps.org/FAQs/Custom...roToHotkey.htm to
assign a keyboard shortcut to the macro, or the steps at
http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm to
assign a button to it (this is only for Word 2003 or earlier; in Word 2007
or 2010, use the Customize Quick Access Toolbar dialog instead).

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Toggle Units of Measurements

That70sHeidi wrote:
I have some documents that need to be worked on in centimeters, and
some that need to be worked on in inches. I know where to find this
change, but is there a shortcut button or keyboard shortcut to toggle
this on and off? I need to change back and forth every 10 minutes or
so.


Use the steps at http://www.gmayor.com/installing_macro.htm to install this
macro in your Normal template:

Sub ToggleMeasurementUnits()
If Options.MeasurementUnit = wdCentimeters Then
Options.MeasurementUnit = wdInches
Else
Options.MeasurementUnit = wdCentimeters
End If
End Sub

Then use the steps at
http://www.word.mvps.org/FAQs/Custom...roToHotkey.htm to
assign a keyboard shortcut to the macro, or the steps at
http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm to
assign a button to it (this is only for Word 2003 or earlier; in Word 2007
or 2010, use the Customize Quick Access Toolbar dialog instead).

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.




  #6   Report Post  
Posted to microsoft.public.word.docmanagement
That70sHeidi That70sHeidi is offline
external usenet poster
 
Posts: 36
Default Toggle Units of Measurements

Thank you thank you thank you! I'm doing this on many people's computers
today!!!

"Jay Freedman" wrote:

That70sHeidi wrote:
I have some documents that need to be worked on in centimeters, and
some that need to be worked on in inches. I know where to find this
change, but is there a shortcut button or keyboard shortcut to toggle
this on and off? I need to change back and forth every 10 minutes or
so.


Use the steps at http://www.gmayor.com/installing_macro.htm to install this
macro in your Normal template:

Sub ToggleMeasurementUnits()
If Options.MeasurementUnit = wdCentimeters Then
Options.MeasurementUnit = wdInches
Else
Options.MeasurementUnit = wdCentimeters
End If
End Sub

Then use the steps at
http://www.word.mvps.org/FAQs/Custom...roToHotkey.htm to
assign a keyboard shortcut to the macro, or the steps at
http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm to
assign a button to it (this is only for Word 2003 or earlier; in Word 2007
or 2010, use the Customize Quick Access Toolbar dialog instead).

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


.

  #7   Report Post  
Posted to microsoft.public.word.docmanagement
That70sHeidi That70sHeidi is offline
external usenet poster
 
Posts: 36
Default Toggle Units of Measurements

Thank you thank you thank you! I'm doing this on many people's computers
today!!!

"Jay Freedman" wrote:

That70sHeidi wrote:
I have some documents that need to be worked on in centimeters, and
some that need to be worked on in inches. I know where to find this
change, but is there a shortcut button or keyboard shortcut to toggle
this on and off? I need to change back and forth every 10 minutes or
so.


Use the steps at http://www.gmayor.com/installing_macro.htm to install this
macro in your Normal template:

Sub ToggleMeasurementUnits()
If Options.MeasurementUnit = wdCentimeters Then
Options.MeasurementUnit = wdInches
Else
Options.MeasurementUnit = wdCentimeters
End If
End Sub

Then use the steps at
http://www.word.mvps.org/FAQs/Custom...roToHotkey.htm to
assign a keyboard shortcut to the macro, or the steps at
http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm to
assign a button to it (this is only for Word 2003 or earlier; in Word 2007
or 2010, use the Customize Quick Access Toolbar dialog instead).

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.


.

Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Measurements defaulting to pixel units ravenatwork Microsoft Word Help 6 September 17th 08 07:43 AM
Measurements Deej Hernandez[_2_] Microsoft Word Help 1 June 13th 08 09:01 PM
Keep units together with units of measurement thermoregulator Microsoft Word Help 3 November 8th 07 11:09 PM
The units of measurements in my rulers are set to characters. kevin from ohs Microsoft Word Help 2 July 30th 05 04:45 PM
measurements Juf Riet Microsoft Word Help 2 November 25th 04 04:43 PM


All times are GMT +1. The time now is 12:25 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"