Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Basically, what I'm trying to accomplish is this: Delete all rows from a table starting from where the cursor is in the table to the end of the table.

The problem is that this table contains vertically merged cells, so when I try to do something like this:

For i = Selection.Tables(1).Rows.Count To Selection.Cells(1).RowIndex Step -1
    Selection.Tables(1).Rows(i).Delete
Next

It complains that individual rows cannot be accessed because the table contains vertically merged cells.

I've also tried selecting the range first, and then deleting the selection. But I couldn't get the range definition right; it always complained that there was an improperly defined parameter.

share|improve this question

1 Answer

up vote 1 down vote accepted

Aren't merged table cells just a pain in the rear with VBA? Word seems to get confused with the column and row count. The follow seems to be pretty robust with any combination of horizontally or vertically merged cells.

Sub DeleteRows()

    Selection.MoveDown Unit:=wdLine, Count:=(Selection.Tables(1).Rows.Count - Selection.Cells(1).RowIndex), Extend:=wdExtend
    Selection.Rows.Delete

End Sub
share|improve this answer
Did exactly what I needed, thanks! – Setsu Dec 12 '12 at 2:48
got error 5991.... because of vertically merged cells. – Totty Feb 13 at 11:13
@Totty What table layout have you got? I've tried it with an absolute bunch of different combinations of vertical and horizontal merges and can't get it to fail once. – CuberChase Feb 13 at 11:25
Sorry I got it wrong it works.. I missread the question... What I've been looking for was to delete all empty rows in a verti-horiz merged cells...stackoverflow.com/questions/14851957/… – Totty Feb 13 at 11:30
No problems, I'll have a look – CuberChase Feb 13 at 12:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.