Word.Tips.Net Welcome toWord.Tips.Net

Helpful Links

Tips.Net Home
WordTips Home

Ask a Word Question
Make a Comment

Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now
Free Printable Forms

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

Newest Tips

Arranging Document Windows

Specifying a Backup Location

Controlling Chart Gridlines

Merging Table Cells

Collapsing and Expanding Subdocuments

Zooming With the Keyboard

Initiating a New Search

 

Shading Rows in a Table

Summary: Need to format the rows of a table so that your data is showcased better? Here are a few ways you can get the shading you need. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)

In Excel it is possible to use conditional formatting to shade every other row (or every nth row) of a data table. You may want to accomplish the same task in Word, and the program provides several approaches you can take.

One approach is to use the AutoFormat capabilities of Word on your table. Follow these steps if you are using Word 2003:

  1. Create your table as you normally would.
  2. Place the insertion point somewhere within the table.
  3. Choose the Table AutoFormat option from the Table menu. Word displays the Table AutoFormat dialog box. (Click here to see a related figure.)
  4. In the list of available styles, choose one that uses shading on the table rows.
  5. Click Apply. The format is applied to the table.
  6. Close the Table AutoFormat dialog box.

If you are using Word 2007, follow these steps, instead:

  1. Create your table as you normally would.
  2. Place the insertion point somewhere within the table.
  3. Make sure the Design tab of the ribbon is displayed.
  4. Using the thumbnails in the Table Styles group, click one that uses shading on the table rows.

Many of the AutoFormats provided for tables are "smart," meaning that they can adjust row shading even if you add new rows to the table. How is this done? Glad you asked; that leads to the second method of shading table rows—table styles.

Styles have been available in Word for years and years. One of the relatively recent additions to Word's style capabilities is styles for tables. You can define a table style that automatically applies shading to either the even or odd rows in a table. (This is how the Table AutoFormats do it.) Follow these steps if you are using Word 2003:

  1. Choose Styles and Formatting from the Format menu. Word displays the Styles and Formatting task pane.
  2. In the task pane, click New Style. Word displays the New Style dialog box.
  3. Using the Style Type drop-down list, choose Table. (Click here to see a related figure.)
  4. Using the Apply Formatting To drop-down list, choose Odd Row Stripes or Even Row Stripes, depending on whether you want this style to apply to odd or even rows.
  5. Use the controls in the dialog box to set the formatting you want applied to the rows.
  6. Set the style name and other properties, as desired.
  7. Click OK.

In Word 2007 you should follow these steps:

  1. Place the insertion point somewhere within a table.
  2. Make sure the Design tab of the ribbon is displayed.
  3. At the right side of the thumbnail images in the Table Styles group you'll notice up and down arrows. Under this is a drop-down arrow. Click it to display the full range of table styles defined in Word.
  4. Click the New Table Style option. Word displays the Create New Style from Formatting dialog box. (Click here to see a related figure.)
  5. Using the Apply Formatting To drop-down list, choose Odd Banded Rows or Even Banded Rows, depending on whether you want this style to apply to odd or even rows.
  6. Use the controls in the dialog box to set the formatting you want applied to the rows.
  7. Set the style name and other properties, as desired.
  8. Click OK.

You've now created a shading style for either odd or even rows. You can apply this style to the table, as desired. The formatting automatically adjusts as you change the number of rows in the table.

The solutions described so far work great if you want to apply formatting to every other row in a table, and provided you are using a version of Word that supports table formatting. They don't work so well if you want the formatting applied to every third, fourth, or fifth row or if you are using an older version of Word that doesn't include table formatting. In these instances it may be best to use a macro to do your formatting. The following is a good example of a macro that can apply shading to every third row in a table:

Sub ShadeRows()
    Dim iRow As Integer
    Dim iHeads As Integer
    Dim iRowTtl As Integer

    If Selection.Information(wdWithInTable) = True Then
        iHeads = InputBox(prompt:="Number of heading rows?", _
          Title:="Headings", Default:="1")

        iRowTtl = Selection.Tables(1).Rows.Count - iHeads
        For iRow = 1 To iRowTtl
            If iRow Mod 3 = 0 Then
                Selection.Tables(1).Rows(iRow + iHeads).Shading.Texture _
                  = wdTexture20Percent
            Else
                Selection.Tables(1).Rows(iRow + iHeads).Shading.Texture _
                  = wdTextureNone
            End If
        Next iRow
    End If
End Sub

The macro asks how many header rows are in the table, and then adjusts the rows to which it applies shading. If the insertion point is not within a table when the macro is run, then nothing happens. You can also change the frequency of shading (for instance, from every third row to every fourth) by changing the Mod formula. Simply change the single line, in this manner:

            If iRow Mod 4 = 0 Then

You can also change the amount of shading by changing the wdTexture20Percent constant to another, such as wdTexture5Percent, wdTexture10Percent, wdTexture25Percent, etc.

You should also understand that if you run the macro on a table where cells have been merged vertically, you may get unexpected results, if any. If you change the number of rows in a table, then you will need to run the macro again to reapply the shading.

Tip #5814 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003 | 2007

Create Rock-Solid Lists! Bulleted and numbered lists can help make your writing clearer and easier to follow. If not done properly, however, they can be a nightmare to work with. Discover the ins and outs of Word's lists with this great reference available in two versions.
 
Check out Word Bullets and Numbering today!