How can I make every other line in a table in Word bold?

J

jujulep

I'm editing a previously made table <not by me> in Office Word 2003 and would
like to make every other line in the table bold. Can this be done?
 
D

Doug Robbins - Word MVP

Run a macro containing the following code when the selection is in the table:

Dim i As Long
With Selection.Tables(1)
For i = 1 To .Rows.Count Step 2
.Rows(i).Range.Font.Bold = True
Next i
End With
 
S

Suzanne S. Barnhill

You can modify the table style. Select Even Row Stripes or Odd Row Stripes
and click on the Bold button.
 
Top