mixed-cell-widths error ... how to avoid it

R

Ruby Tuesdays

I have a word table that posibly has a merge cell somewhere in the table.
How one delete such row programatically since the vbs won't allow us even to
acces that row. How do first check the row.columns.count, if it is less than
what it should be, delete it or go to the next row. Thanks
 
R

Ruby Tuesday

Solved! You can't use the column object. Use index to walk tru each row and
check the cell.count. If less than expected, ignore it, otherwise, process
it.
 
Top