Wednesday, April 4th, 2007

Vertical text in Word

Ever been confused about how to create vertical text in Word. You deserve to be. There is this neat looking Text Direction tool that never seems to be active so you can use it. Fact is – it works on text in a table, but what if you don’t have text in a table?

Luckily it works just great on text in a text box. So, to make a vertical block of text, drag a text box (Insert, Text box) onto your page. Now click inside it and type your text. Click in the box and choose Format, Text Direction and choose one of the two vertical options – Voila! instant vertical text.

Helen Bradley

Monday, April 2nd, 2007

Checkboxes in Word

Stuck and need a checkbox in a Word document? Simple!

Click where the checkbox is to go and choose Insert, Symbol, Symbols tab. From the Font list choose the Wingdings font. You’ll see at character positions 113 & 114 are two checkboxes. Click the one you want and choose Insert and then Close. If you’d use it a lot, create an AutoText or AutoCorrect entry for it so it’s only a word away.

Helen Bradley

Wednesday, March 28th, 2007

Seeing double – split windows in Word

Long documents are harder to manage than short ones, and it can be difficult to cut and paste an item on page 1 all the way to page 20. I find it easier to do when I can see the source and target area on the screen all at once. That’s why I love the Split window tool.

Here’s how to use it, position the document on the screen where you want it to be split in two and choose Window, Split. Now click where you want should be. You’ll get two horizontal panes each with its own scroll bars and you can move around the panes independently and show different places in the document in each. You can also drag and drop between panes.

When you’re finished editing, choose Window, Remove Split.

Helen Bradley

Friday, March 16th, 2007

Axing Word Smart Quotes

I like Word smart quotes most of the time but sometimes, like when I’m preparing an email or some code, they’re not needed and can make a mess of the project.

You can, quite easily, stop this happening if you choose Tools, AutoCorrect Options, AutoFormat as you Type tab and disable the checkbox for “Straight quotes” with “smart quotes” and click Ok. Now you’ll have straight quotes in your document.

Reverse the process to get them back.

This simple macro, attached to a toolbar button can do the toggling work for you (just make sure you put everything between the Sub and End statements appears on one line:

Sub changeQuotes()
Options.AutoFormatAsYouTypeReplaceQuotes = Not (Options.AutoFormatAsYouTypeReplaceQuotes)
End Sub

Helen Bradley

Thursday, March 15th, 2007

Inserting Images in Word

In recent implementations of Word they broke the image insertion tool. When you insert an image it comes in as “Inline with text” which means it won’t move, it breaks up lines and, in general, looks awful.

Luckily it’s fixable and permanently so. To do this, choose Tools, Options, Edit tab. From the Insert/Paste pictures as dropdown list choose something like Square or In front of Text (in fact anything other than In line with text). Click Ok and the change will be permanent. Although you can, of course, always change the setting for any inserted image if you really do want to put it inline with text by selecting the option from the Picture toolbar on an image by image basis. My bet is you won’t ever do it though!

Helen Bradley

Wednesday, March 7th, 2007

Click and go in Word

You already know that you can simply double click anywhere in the Word editing window and immediately the cursor appears ready for you to start typing. But clicks elsewhere do practical and timesaving things too:

  1. Double click a ruler (vertical or horizontal) to open the Page Setup dialog
  2. When you have a header or footer set up, double click it to go to Header and Footer view
  3. Double click the indent marker on the horizontal ruler to open the Paragraph dialog
  4. Double clicking a bullet or number in a list opens the Bullets and Numbering dialog

    and, finally for today at least:

  5. Double click on the column marker in the ruler when you’re inside a table (or double click the table’s move handle) to open the Table Properties dialog.

Helen Bradley

Wednesday, March 7th, 2007

Grouping AutoText entries in Word

Yesterday I explained how to use AutoText entries to speed up entering data. Today, I’ll show you how to organize your AutoText entries into groups on the menu using Styles:

You create or add an entry to AutoText groups on the AutoText menu by saving an AutoText entry formatted using a style with the name you want to be added to the menu. For example, to add an AutoText entry to the Closing group, type the text, select it and format it with a style called closing (or create a style with that name). Then save the text as an AutoText entry.

When an AutoText entry is saved that is formatted with a style a new entry with that style name appears on the AutoText menu or the item is added to the submenu if it already exists. So, to enter something on the closing submenu, format it with a style that you have called Closing before creating it.

Helen Bradley

Tuesday, March 6th, 2007

AutoText in Word

The AutoText tool in Word can help speed up your work by automatically inserting pieces of text and images. Here’s how to use it:

Step 1
To create an AutoText entry, type and then select the text to save and choose Insert > AutoText > New, type the name for the entry and click Ok. You can also do the same thing with images inserted into a document and create an AutoText entry from one.

Step 2
To later use a saved AutoText entry, type the name of the entry. When you have typed sufficient letters to uniquely identify the entry (at least four), Word will prompt you with the AutoText name. Press Enter to insert the AutoText entry. You can also type the name and press F3 or select the entry by choosing Insert, AutoText, AutoText and choose it from the dialog.

tomorrow… how to create your own groups in AutoText to organize entries.

Helen Bradley

Monday, March 5th, 2007

Autonumbering documents in Word

Word does not contain any option for automatically numbering a series of documents with a consecutive number. The solution is to create a macro to do the work for you. Start with a template that has a macro that runs when ever the template is used for a new document. The macro should read a number stored in a file on your drive, add it to your document and then, to prepare the number for the next time it’s required, the number should be incremented by one and be written back into the file.

To create the solution, create a new document (or open an existing one to use as a template) and click where you want the sequential number to appear, and choose Insert, Bookmark, type docNum in the Bookmark name area and click Add.

Save this file as a template by choosing File, Save As, from the Files as type list choose Document Template (*.dot), give the file a name and click Save. With the file still open, choose Tools, Macro, Macros and type the name of the macro docNum and, from the Macros In list choose the template file name for the file you just saved and choose Create.

Type this macro as shown, the sub and end sub lines should be there already:

Sub docNum()
Dim MyString, docNumber
FileToOpen = “c:\windows\docNumfile.txt”
Open FileToOpen For Input As #1
Input #1, docNumber
Close #1 ‘ Close file
ActiveDocument.Bookmarks(“docNum”).Select
Selection.InsertAfter Text:=docNumber
docNumber = docNumber + 1
Open FileToOpen For Output As #1
Write #1, docNumber
Close #1 ‘ Close file.
End Sub

Now choose File, Close and Return to Microsoft Word. With the template on the screen, choose File, Close and answer Yes when prompted to save your changes.

Now open Notepad and type a number 4 or 5 numbers less than the number of the first quote you want to use. So, if you want to start numbering at 200, type 195 so you have a few numbers to use to test the process. Choose File, Save As and save the file as a text file, calling it docNumfile.txt and save it to this folder: C:\windows. Close Notepad

To test the process, choose File, New, choose the template file and click OK. Now run the macro by choosing Tools, Macro, Macros, docnumb, Run. If you have everything right the document number will be inserted in the document.

When this is working fine, alter the macro so this process of inserting the document number happens automatically whenever you create a new document based on this template. To do this, choose Tools, Macro, Macros, click on docnumb and click Edit. Change this macro’s procedure name by altering this line of code:

Sub docnumb()

to read

Sub AutoNew()

Choose File, Close and Return to Microsoft Word. With the template on the screen, choose File, Close. Say No to saving your changes to this file but answer Yes to save the changes to your template file.

Now test again by creating a new file using File, New, choose your template and click OK. The document number should be added automatically to the new document.

If, in the process of testing you find you go past your starting document number, open Notepad and open the file docnumfile.txt, type a new starting number and save it again.

Helen Bradley

Monday, February 26th, 2007

Smarter editing in Microsoft Publisher

When you’re working with large pieces of text in Microsoft Publisher, you may find it easier to work in Word rather than Publisher. This way you can concentrate on your text without having to deal with layout issues.

Then, when you have finished settling your text, import it into a Publisher text box by clicking in the text box and choose Insert, Text file and browse to locate and import your file.

On the other hand, you can edit a piece of text in Word from inside Publisher if you right click a text frame in Publisher and choose Change Text, Edit Story in Microsoft Word to export it to Word. When you’re done, choose File, Close & Return to return to Publisher.

Helen Bradley

Page 5 of 6« First23456