View Single Post
 
Old 04-02-2011, 11:20 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2000
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,369
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi Dale,

Try:
Code:
Sub Demo()
Dim i As Integer, j As Integer, k As Integer
With ActiveDocument
  For i = 1 To 4
    With .Tables(i)
      j = .Columns.Count
      For k = 1 To .Rows.Count - 1
        .Cell(k, j).Range.Text = "0"
      Next
    End With
  Next
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote