S
stephenc
I'm no expert but I think you'll find this is a much faster way to loop
through all cells in a table:
Set oCell = oTable.Range.Cells(1).Range
Do
oCell.Style = '... or whatever you want to do here
Set oCell = oCell.Next(wdCell)
Loop
Hope this helps.
S
through all cells in a table:
Set oCell = oTable.Range.Cells(1).Range
Do
oCell.Style = '... or whatever you want to do here
Set oCell = oCell.Next(wdCell)
Loop
Hope this helps.
S