View Single Post
  #2   Report Post  
Posted to microsoft.public.word.tables
Doug Robbins - Word MVP
 
Posts: n/a
Default How can I make every other line in a table in Word bold?

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


"jujulep" wrote:

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?