L
Liakamai
When I run the sub below it works fine. However when I call it from
Document_Open() it gets ugly.
Call this sub from Document_Open() and you'll see what I mean
Sub Document_Open()
call HideRows()
end sub
Thanks in advance for any advise.
Sub HideRows()
Dim i As Integer
i = 1
For i = 1 To 13
ActiveDocument.Tables(1).Rows(i).Range.Font.Hidden = True
Next
End Sub
Document_Open() it gets ugly.
Call this sub from Document_Open() and you'll see what I mean
Sub Document_Open()
call HideRows()
end sub
Thanks in advance for any advise.
Sub HideRows()
Dim i As Integer
i = 1
For i = 1 To 13
ActiveDocument.Tables(1).Rows(i).Range.Font.Hidden = True
Next
End Sub