Book

Suggestions


Enter your email address:

Delivered by FeedBurner


Home Page

Bloglines

1906
CelebrateStadium
2006


OfficeZealot

Scobleizer

TechRepublic

AskWoody

SpyJournal












Subscribe here
Add to 

My Yahoo!
This page is powered by Blogger. Isn't yours?

Host your Web site with PureHost!


eXTReMe Tracker
  Web http://www.klippert.com



  Saturday, May 10, 2008 – Permalink –

Tables

Without reservations


Word is more versatile than Excel or PowerPoint when it comes to manipulating how a table will appear. Go to View>Toolbars Tables and Borders, and also see the Table menu especially, "Table Properties" .
(In 2007 go to Insert Table, or Right click the Table)

Often, you will insert a table at the top of a document, and then later realize that you need to enter text above the table.

A keyboard shortcut to fix this is to place the insertion point in the first cell in the top left corner of the table.

Hit Ctrl+Shift+Enter and Word will move the table down and place the insertion point at the top.

This is also the combination used to split an existing table in two.
(If there are no entries in the cell, the Enter key will move the insertion point. If there is text in the cell or a paragraph above the table, then the Enter key will just start a new paragraph inside the cell.)

Here are some more suggestions from the Word MVPS web site:
Maximising the performance of Word tables

Rutgers University:
Word 2003: tables




See all Topics

Labels: , ,


<Doug Klippert@ 8:58 AM

Comments: Post a Comment


  Wednesday, April 16, 2008 – Permalink –

Word Ranges

Pre-defined locations



When entries are made in a document, Word creates a Story Range to identify what part of the document is being used. These ranges can be used in macros to search for items , change text, or other actions.


This macro, for instance, changes the text in just the header of the first section:

Sub HeaderFooterObject()
Dim MyText As String
MyHeaderText = "This would be your text"
With ActiveDocument.Sections(1)
.Headers(wdHeaderFooterPrimary).Range.Text = MyHeaderText
End With
End Sub


When you use Edit>Replace in Word, it does a fine job of locating all occurrences of the target in the body of the document or in the header or footer.


Something fails, however, when you record the action and try to run it as a macro. To make it work, you must loop through the built in ranges of a Word document.


The exercise is interesting if only for the exposure to the built in ranges such as:

  • wdCommentsStory
  • wdEndnotesStory
  • wdEvenPagesFooterStory
  • wdEvenPagesHeaderStory
  • wdFirstPageFooterStory
  • wdFirstPageHeaderStory
  • wdFootnotesStory
  • wdMainTextStory
  • wdPrimaryFooterStory
  • wdPrimaryHeaderStory

    and
  • wdTextFrameStory.


See this article for more information:

Word.MVPS.org:
Find and replace with VBA


Also:

Microsoft KB
VBA macro examples to insert text into a document



See all Topics

Labels: , , ,


<Doug Klippert@ 7:14 AM

Comments: Post a Comment


  Sunday, March 02, 2008 – Permalink –

Index Concordance

Order!


Creating a Table of Contents can be easy if you use Styles. Word will automatically insert a TOC when you place the insertion point and then use Insert>Reference Index and Tables and choose Table of Contents.
(2007 – Reference Tab>Table of Contents group)

An Index or Concordance can be more difficult.

In a larger document, you may want the reader to be able to locate key words. You could go through the whole document and mark each word you want included, but there is an easier way.


  1. Make a list of the important words.
  2. Create a two-column table in a new document.
  3. In the first column, enter the word or phrase.
  4. In the second column, enter the index entry
    (If you need a sub-category, type the main entry followed by a colon (:) and then the sub category.)
  5. Save the file.



When it comes time to create the Index, place the insertion point, go to Insert>Reference Index and Tables. Choose Index and then AutoMark.
(2007 – Reference Tab>Index group)

Browse to the location of your Index file.

Word will now automatically use your list to mark the main document and insert an Index.

Also:

Word for Word:
An Index or a Concordance for Your Book?


Word MVPS.org:
How can I automatically generate an index in Word?


Microsoft KB:
How to create a table of contents and index with field codes in Word



See all Topics

Labels: , , , , ,


<Doug Klippert@ 7:38 AM

Comments: Post a Comment


  Sunday, February 10, 2008 – Permalink –

Merge to More than One Document

Custom content



In the Data Source, include a field for the type of letter the recipient requires.

In the Main merge document, enter IF fields, such as:

{IF {MERGEFIELD "LetterType"=1} {INCLUDETEXT "C:\\Project\\Letter1" \* MERGEFORMAT} ""}
{IF {MERGEFIELD "LetterType"=2} {INCLUDETEXT "C:\\Project\\Letter2" \* MERGEFORMAT} ""}



  • The curly brackets { } cannot be entered from the key board. Either use Insert>Field, or Ctrl+F9.
  • Word uses spaces in the If..Then..Else statement.
  • The last two quote marks "" are "empty" , so nothing will be entered.
  • Notice the \\ in the path statement. A path is not needed if the Main document is in the same folder as the letters.
  • To see the field codes, use Alt+F9 to toggle the view on and off.

Letters 1 and 2 can have completely different texts, formats and layouts. One can be an invitation to a sale, the other can be a dunning letter.
(To carry over different formatting, leave out the \* MERGEFORMAT switch)

After setting up the main document for mail merging, insert all of the fields you want to merge.

Copy the individual fields and paste them in the correct locations in Letter 1 and 2.

Go back to the main document and erase all of the text and fields EXCEPT for the IF statements.

Letters 1 and 2 do not have to be set up a merge docs, or connected to a data source. Their text will be inserted in the Main document depending on the field type.





See all Topics

Labels: , , ,


<Doug Klippert@ 7:32 AM

Comments: Post a Comment


  Tuesday, February 05, 2008 – Permalink –

Curly Quotes be Gone

Stop them up front


Word, by default, uses curly (“ ”) rather than straight quotes(" ").

Here's a video that shows how to go into Word options and turn this Auto feature off.

Next we need to turn off Moe and Larry




Curly quotes



See all Topics

Labels: , , , ,


<Doug Klippert@ 7:27 AM

Comments: Post a Comment


  Wednesday, December 26, 2007 – Permalink –

Page Breaks

Demo tutorial


You can control when Word decides to break for a new page.

Ctrl+Enter is the keyboard shortcut, but there are a number of variations.


This MS link has both Demos and text tutorials.
Page breaks

BTW; a merged document is made up of Section breaks, not Page breaks.

For ease of printing, Replace ^b with ^m



See all Topics

Labels: , , ,


<Doug Klippert@ 6:35 AM

Comments: Post a Comment


  Thursday, November 08, 2007 – Permalink –

AutoText - Building Blocks

New old feature


Back in the old days minutes, we used "Autotext" to hold chunks of data that could then be reused in other locations and in other documents.


This tool has been polished and given the new name of "Building Blocks".

The Microsoft Office Word Team's Blog:

Part 1 - Building Blocks

Part 2 - Inserting and Swapping Building Blocks

Part 3 - Creating Building Blocks

Part 4 - Deploying Building Blocks

Office.Microsoft.com:
Reuse and distribute parts of a document


See all Topics

Labels: ,


<Doug Klippert@ 6:28 AM

Comments: Post a Comment


  Monday, October 15, 2007 – Permalink –

Work with Office

It can make life easier


Here's a collection of tips and tutorials from Microsoft about how to use '07 at work.
If no one's looking, you could use these hints at home too.

Ways to work smarter



See all Topics

Labels: , ,


<Doug Klippert@ 6:50 AM

Comments: Post a Comment


  Monday, October 08, 2007 – Permalink –

First look at Word 2007?

We all have to start somewhere


Here is a 30 minute course:


After completing this course you will be able to:

  • Create and save a document.
  • Accept or reject suggested revisions for spelling and grammar as you type.
  • Change page margins.
  • Adjust spacing by deleting any extra spaces between words or extra lines between paragraphs.

Create your first document in Word



See all Topics

Labels: ,


<Doug Klippert@ 8:04 AM

Comments: Post a Comment