When you create a new, blank document, you can begin typing text to fill the page. As you type, each character appears to the right of the blinking vertical insertion point. You can use the Backspace and Delete keys to delete text, the Spacebar to enter spaces, and all the other keys that you’re using for typing. Word also enables you to start a line of text anywhere on the page using the Click and Type feature. (This feature only works in the Print Layout view, so to learn more about that view, see the later section describing Word 2007’s views.) To take advantage of Click and Type, move the mouse pointer over a blank area of the page. If you don’t see formatting symbols below the I-beam mouse pointer, click once. This enables Click and Type and displays its special mouse pointer. Then, you can double-click to position the pointer on the page and type your text. Figure 4-1 shows snippets of text added to a page using Click and Type.
By default, the margins for a blank document in Word 2007 are 1″ on the left and right, which is a quarter inch less than previous versions of Word. When you type enough text to fill each line, hitting the right margin boundary, Word automatically moves the insertion point to the next line. This automated feature is called word wrap, and it’s a heck of a lot more convenient than having to make a manual carriage return at the end of this line.
If you adjust the margins for the document, word wrap always keeps your text within the new margin boundaries. Similarly, if you apply a right indent, divide the document into columns, or create a table and type in a table cell, word wrap automatically creates a new line of text at every right boundary. Just keep typing until you want or need to start a new paragraph (covered shortly). Later chapters cover changing margins and indents and working with tables.

Like its prior versions, Word 2007 offers two modes for entering text: insert mode and overtype mode. In the default mode, insert mode, if you click within existing text and type, Word inserts the added text between the existing characters, moving text to the right of the insertion point farther right to accommodate your additions, and rewrapping the line as needed. In contrast, when you switch to overtype mode, any text you type replaces text to the right of the insertion point.
Overtyping is a fine method of data entry—when it’s the mode that you want. Unfortunately, in previous Word versions, the Insert key on the keyboard toggled between insert and overtype modes by default. Because the Insert key is found above or right next to the Delete key on the keyboard, many a surprised user would accidentally hit the Insert key and then unhappily type right over their text.
In Word 2007, the Insert key’s control of overtype mode is turned off by default. You can use the Word Options dialog box to turn overtype mode on and off, and also to enable the Insert key’s control of overtype mode. Select Office Button➪Word Options, and then click Advanced in the list at the left side of the Word Options dialog box. Use the Use Overtype Mode checkbox (Figure 4-2) to toggle overtype mode on and off, and the Use the Insert Key to Control Overtype Mode checkbox to toggle the Insert key’s control of overtype mode on and off. Click OK to apply your changes.
Double-click and type anywhere on the page.
Every new, blank document has default tab stops already set up for you. These tabs are set at 1/2 inch (.5″) intervals along the whole width of the document between the margins. To align text to any of these default tab stops, press the Tab key. You can press Tab multiple times if you need to allow more width between the information that you’re using the tab stops to align.
To display the rulers so that you can better work with text alignment features like tabs in a document, click the View Ruler button that appears at the top of the vertical scroll bar at the right side of the Word window.
In previous versions of Word, when you wanted to create a new paragraph in a blank document, you had to press the Enter key twice. That’s because the default body text style didn’t provide for any extra spacing after a paragraph mark, which is a hidden symbol inserted when you press Enter.
In Word 2007, pressing Enter by default not only inserts the paragraph mark to create a new paragraph, but also inserts extra spacing between paragraphs to separate them visually and eliminate the need to press Enter twice. As shown in Figure 4-3, when you press Enter after a paragraph the insertion point moves down to the beginning of a new paragraph, and Word includes spacing above the new paragraph.
Double-click and type anywhere on the page.
]]>
You’ve probably seen or read books where the introductory material displays page numbers using lower-case Roman numerals (i, ii, iii, and so on), whereas the rest of the book disÂplays page numbers using Arabic numerals (1, 2, 3, and so on). Using multiple page numÂber formats in this way is an easy method for differentiating two different sections of a book, and it’s a technique you can apply to your own Word documents.
The trick here is to create a section break between the parts of the document where you want to use the different page numbers. A section is a document part that stores page layout options such margins, page size, page orientation, columns, line numbering, and footnotes and endnotes. The transition from one section to another is called a section break. Sections also include headers and footers, and we’ll use that fact to set up our different numbering schemes.
The first step is to create the section break, which you do by following these steps:
- Next Page-Starts a new section on a new page.
- Continuous-Starts a new section at the cursor. (Note that this command doesn’t create a page break, so you probably won’t use it in this context.)
- Even Page-Starts a new section on the next even-numbered page.
- Odd Page-Starts a new section on the next odd-numbered page.
TIP
To show the current section number in the status bar, right-click the status bar, and then click to activate the Section item.
You’re now ready to add your two different page number formats-one for each of the two sections in your document. The idea here is to add page numbers to the document and then break the link between the second section header and the first section header. This enables you to set up different page numbering schemes in each section. Follow these steps:

Figure 1 In the second section, you’ll most likely want to start the numbering over again at 1.
Technorati Tags: multiple page number, page number format
]]>
Numbered lists (choose Home, Numbering) are a great way to present a sequential series of items-steps in a procedure, rankings, Top Ten lists, and so on. When you create one numbered list, press Enter twice after the last item and then start a second numbered list, (Word starts the second list at 1). That’s usually the behavior you want, but there may be times when you have to insert text between two steps. In this case, you want to make sure that Word continues the numbering when the list continues after the inserted text.
Word gives you a couple of ways to do this, and the method you choose depends on when you want to insert the text: while you’re creating the numbered list or after you’ve finished the numbered list.
The easiest method is to insert the text after you have completed the numbered list:
To insert the text while you’re creating the numbered list, follow these steps:

Figure 1 When you resume the numbered list, click the smart tag and then click Continue Numbering.
Technorati Tags: continuous number, separate numbered
]]>
One of my goals in this book is to present you with tricks that are practical in the sense that you can use them right away to be more productive or more efficient. I also try to focus on reducing drudgery, mostly by automating tedious or routine tasks with macros. This section’s trick isn’t even remotely practical, but I think it falls somewhat into the “reducing drudgery” category, as you’ll see (I hope!).
We all have certain documents that we use almost every day. A good example is a to-do list that is checked constantly throughout the day and that is added to or deleted from as necÂessary. Any document that you look at many times a day gets boring awfully fast. To add some visual interest, Listing 1 presents a macro that applies a random background texture to a specified document.
Listing 1 A Macro That Applies a Random Background Texture to a Specified Document
Public Sub ApplyRandomTexture(doc As Document)
Dim i As Integer
‘
‘ Initialize the random number generator
‘
Randomize
‘
‘ Generate a random number between 1 and 24
‘
i = Int(24 * Rnd + 1)
‘
‘ Apply the random number as a background texture constant
‘
doc.Background.Fill.PresetTextured i
End Sub
Word has 24 predefined textures, and these are given the numbers 1 through 24 in the Office object model (these are msoTexture constants). This macro uses the Rnd function to generate a random number between 1 and 24 and then uses the PresetTextured property to apply the random texture. Note that the macro takes a Document variable named doc as its argument. To run this macro each time you open a document, display the Visual Basic Editor, click the docÂument’s project, and then double-click the ThisDocument object. In the Object list, select Document and in the Event list select Open. In the Document_Open() stub that displays, add the ApplyRandomTexture ThisDocument statement, as shown in the following:
Private Sub Document_Open()
ApplyRandomTexture ThisDocument
End Sub
Technorati Tags: random text background
]]>
The vast majority of documents look best when formatted with dark text on a light backÂground-especially a white background. However, there may be times when you need something a little more interesting. For example, light text on a dark background is a great way to make text box text and table headers stand out. For the document as a whole, you want to avoid busy backgrounds because they almost always render the document text unreadable. An occasionally useful exception is to use a background that resembles some kind of specialty paper. This can add a sense of realism to the document, which can be effective (if used sparingly, of course).
One of the nicest of these specialty paper backgrounds is parchment paper, which can give documents a classy, slightly old-time feel. Follow these steps to apply a parchment paper background:
Technorati Tags: parchment paper background, word 2007
]]>
A watermark is a bit of text (or sometimes an image) that displays “behind” the text on each page and is visible both onscreen and in the printed version of the document. The purpose of a watermark is to display a broad message to the reader about an aspect of the document. For example, a watermark consisting of the word “DRAFT” tells the reader that this is not the final version of the document. Similarly, the watermark “ASAP” tells the reader you want the document handled as soon as possible.
Word offers a number of built-in watermarks. In the Watermarks gallery (choose Page Your, Watermark), for example, you can select from watermarks that use the following text: CONFIDENTIAL, DO NOT COPY, DRAFT, SAMPLE, ASAP, or URGENT, each of which you can display diagonally or horizontally across the page.
If none of these predefined watermarks is quite right for your needs, you can build a cusÂtom watermark that consists of the text you want to display and the font, size, color, and layout you prefer. Here are the steps to follow:
Technorati Tags: custom watermark, word 2007
]]>
Using linked text boxes is a great way to get control over your layout while still maintainÂing text flow. However, as convenient as it is for you, it may not be all that convenient for your readers, who might find it difficult to follow the story from one text box to the next.
One solution would be to include an instruction below the first text box that tells the reader where to go to continue reading the article (for example, Continued on page 4). Make sure you put this instruction outside of the text box, or you’ll interrupt the flow between the text boxes.
In the publishing world, such an instruction to the reader is called jump text. In the Word world, however, it does suffer from a fairly major problem: In most cases, you can only be sure of the page number after you’ve completed the entire document. This means that after your document is finished, you need to run through the whole thing and insert the correct page numbers into all the jump text. That is inefficient and labor-intensive.
A much better solution-and one that takes advantage of one of the inherent strengths of electronic documents-is to set up the jump text as a link to the next text box. This enables you to use a more generic instruction-such as Ctrl+click here to continue this artiÂcle-and it makes life much easier for the reader by creating true “jump” text.
The first task here is to create a bookmark for the spot in the document to which you want to jump. Your initial thought might be to create a bookmark for the next text box. However, that’s not a great idea because when you jump to a text box, Word selects the entire text box, which isn’t something you want your readers handling. Your second thought might be to jump to the top left corner of the text box (that is, the position to the left of the first character). That’s better because Word doesn’t select anything, but that position may change if you edit or format the text. The ideal jump spot is an empty line just above the text box. Click that line, choose Insert, Bookmark to display the Bookmark dialog box, type a Bookmark Name, and then click Add.
Now you can set up the jump text by following these steps:
TIP
When the reader hovers the mouse pointer over a hyperlink,Word displays a ScreenTip that shows the path name of the document and the bookmark name, which is not friendly. I prefer to use the article name, which helps to reinforce to the reader that the link continues the article (see Figure 1).To change the ScreenTip text that the reader sees, click ScreenTip, type the text that you want to display, and then click OK.
Figure 1 shows a document with a couple of linked text boxes, each of which has jump text below it.

Figure 1 You can add jump text to enable the reader to quickly navigate to the next linked text box.
Technorati Tags: jump text word 2007
]]>
When you read a newspaper, magazine, or newsletÂter, you often come across an article that starts on one page and then continues on a different page later in the publication. In some cases, you may have to make several “jumps” from one page to another to complete the article. This is a useful technique because it enables the publisher to place several articles on the front page of the publication, which helps create interest. It also helps on the inner pages of the publication because it gives the publisher more flexibility to lay out the articles (whether they’re continuations from the front page or new articles).
If you’re creating a multi-page publication in Word, how can you break up articles so that they appear on different pages? The most obvious way is to insert the first part of each artiÂcle on the front page and then copy the rest to an inner page. That might work if all your text is complete and no longer requires editing. However, you may still have trouble fitting the text properly on the pages, so it may require quite a bit of cutting and pasting to get a suitable layout. And, certainly, this type of setup is a nightmare waiting to happen if your text or formatting still needs to be revised.
The problem with cutting and pasting to get this effect is that the different parts of any one article aren’t connected in any way, so there’s no flow. In Word, you usually create flowing text by converting that text into two or more columns: The text flows from one column to the next and from the last column on one page to the first column on the next. Even better, each time you add, format, move, or delete text in one column, Word automatically adjusts the position of the text in the other columns to compensate. Unfortunately, you must keep columns together; you can’t start an article in columns on one page and then continue it in columns on a different page.
The solution that gives you both flowing text and the ability to jump from one part of the publication to another is the concept of linked text boxes. This refers to two or more text boxes configured so that the text in one box flows into the next box, even if that box is located elsewhere in the document.
Assuming you’ve created two text boxes (choose Insert, Text Box), you create a link between them by clicking inside the first text box, choosing Format, Create Link (the mouse pointer changes to a pitcher), and then clicking inside the second text box.
CAUTION
If you have existing text that you want to include in the text boxes, resist the temptation to cut and paste the text into the boxes for now. For linking to work, the text boxes (particularly the second one) should be empty.
Now add all your text to the first text box. When the text reaches the end of the first text box, it flows into the second text box.
What if you want to use more than two text boxes? That’s not a problem because Word enables you to link up to 32 text boxes. Begin by creating all the text boxes. Then link one text box to the next using the Create Link command. (That is, link the first to the second, then link the second to the third, and so on.) When that’s done, add all your text to the first text box.
Whether you use 2 or 32 linked text boxes, you need to know how to navigate from one to the other. Word gives you the following techniques:
NOTE
Unfortunately,Word doesn’t give you any way to reorder linked text boxes. If you need to change the order of the links, you must break them and then recreate them in the new order.
Technorati Tags: display multiple text, linked text box
]]>
When you’re working with fields, it’s common to need to update all of a document’s fields at one time. One way to do this is to select the entire document and press F9. This works, but it’s a hassle because not only must you perform the extra step of selecting the entire document, but that extra step also means that you lose your current cursor position.
To avoid this problem, use the VBA macro in Listing 1 to update all the document’s fields.
Listing 1 A Macro to Update All the Fields in the Active Document
Sub UpdateAllFields()
ActiveDocument.Fields.Update
End Sub
Add this macro to a Quick Access toolbar button or assign it a keyboard shortcut (I use Ctrl+Alt+Shift+F9).
It’s also often useful to update all of a document’s fields when the document is opened. Word doesn’t do that by default, but you can create a macro that does.
Launch the Visual Basic Editor and open the project that corresponds to your document. In the project’s Microsoft Word Objects branch, double-click the ThisDocument object. In the code window that displays, select Document in the object list and select Open in the event list. Add the following statement to the Document_Open() stub that displays:
ThisDocument.Fields.Update
Figure 1 shows the completed code.

Figure 1 Add this code to your document’s Open event to update all fields each time the document is opened.
Technorati Tags: update all fields, word 2007
]]>
When you share a document with another person, you usually turn on revision marks, so that you can see the changes the other person makes. Unfortunately, it often happens that the other person accidentally turns off revision marks before or in the middle of editing so that you can no longer easily see the changes he made. In the past, this meant opening the two versions and then switching from one window to another or trying to arrange the docÂuments, so that you could see both at once.
Word 2007 helps you avoid this extra work by offering a new View Side By Side feature, which arranges the document windows so that you can easily compare the two files. Here’s how it works:
NOTE
The View Side By Side feature includes synchronous scrolling, which means that as you scroll up or down (or even side to side) in one document, Word scrolls in the same direction and by the same amount in the other document. If you find this distracting, you can turn it off by choosing View, Window, Synchronous Scrolling.

Figure 1 Activate the View Side By Side command to compare two documents side by side.
TIP
You can get Word to help you compare the two documents. Choose Review, Compare, Compare to open the Compare Documents dialog box. Use the Original Document list to specify the original document and use the Revised Document list to select the document with changes. If you want to specify what changes to look for, click More and use the check boxes to modify the Comparison Settings. Click OK, and Word opens a Compare Result window, which includes the Original Document pane, the Revised Document pane, the Reviewing Pane with a list of the changes, and a Compared Document pane that combines the changes into a single document.
Technorati Tags: two document, side by side document
]]>