Posts Tagged ‘shortcut’

Quickly Display the Tabs Dialog Box in MS Word

Thursday, January 12th, 2012

As anyone who subscribes to my newsletter or blog knows, I am the queen of saving time and keystrokes.  Why on earth would one want to do something the long way??

So in that regard, here is a handy little shortcut you can use to display your Tabs dialog box:

Simply double-click on your Ruler just below the markings that appear there.   Be certain that you double-click ONLY at the bottom of your Ruler.  If you click at the top the Page Setup dialog will appear instead of the Tabs dialog.

Please note that when you double-click on your Ruler, you may also find that you have accidentally created a tab stop. Don’t fret though. You can quickly and easily remove that inadvertent tab stop by dragging if off your Ruler. Of course, you can also do it in the Tabs Dialog box by clicking Clear All.

Assign a Shortcut Key to your Styles in MS Word

Tuesday, January 10th, 2012

I have covered using styles in previous blog posts, but did you know you could assign a shortcut key combination to your styles?  And why wouldn’t you want to do this??  After all, it does save you valuable time and keystrokes!

Follow the steps below to define a shortcut key combination for a style:

  1. Display the task pane by first clicking on the Home tab of your Ribbon and then clicking the small icon in the lower right-hand corner of the Styles group. In earlier versions MS Word displays the Styles and Formatting task pane at the right-hand side of your screen.
  2. In the list of styles, hover your mouse over the name of the style whosse shortcut key would would like to change and a drop-down arrow should appear to the right of the style name.
  3. Click the down arrow and choose Modify or right-click and select Modify to display the dialog box.
  4. Click on Format and select Shortcut Key from the menu and the Customize Keyboard dialog box will appear.
  5. Click the key combination you would like to apply to your style. Any current assignments for that particular key combination appear just below what you just keyed in.
  6. Click on Assign.
  7. Click Close.
  8. Click on OK to close teh Modify Style dialog box.

That’s all there is to it!

 

Deleting all Tab Stops in MS Word

Tuesday, August 30th, 2011

A reader wrote to me recently inquiring whether there was a keyboard shortcut to delete all tab stops in her document.

Unfortunately there is no keyboard shortcut to accomplish this task. You must use the Tabs dialog box instead.

Follow the steps below to learn how:

Click CTRL + A to select your entire document.

Display the Home tab of your Ribbon.

Click the small icon at the bottom-right of the Paragraph group to display the dialog box.

Click the Tabs button at the bottom-left to display the Tabs dialog box.

Click the Clear All button.

Click OK.

In version 2003, simply click on Format | Tab | Clear All.

I have read different posts that suggest a quick way to delete tab stops is to select all the text and then click CTRL + Q. This removes all explicit paragraph formatting from your text.  While the tab stops are a paragraph format, CTRL + Q just removes any explicitly added tab stops and sets the paragraphs back to whatever formatting is defined for each paragraph’s style. So if the underly paragraph style has tab stops defined, those stops remain after CTRL + Q is clicked and not all tab stops are removed.

More importantly, you should know that when you get rid of your paragraph stops, Word’s default tab stops automatically take place. The default tab stops in MS Word are set for every half inch. You can set them to a different setting, but you cannot cleanse your document of all tabs completely. There is no method to do this.

Should you need to remove tab stops from a large number of documetns you may want to use a macro to accomplish the task for you. The macro below will remove all tab stops from all paragraphs in yoru document:

Sub TabsGone()

     ActiveDocument.Paragraphs.TabStops.ClearAll

End Sub