S
Steve Wylie
I have a short macro that selects the current cell of a
table, and the one below it, and merges them both into
one cell:
Selection.MoveDown Unit:=wdLine, Count:=1,
Extend:=wdExtend
Selection.Cells.Merge
However this macro does not work when the current cell
contains text of more than one line (because of
the 'Unit:=wdLine' bit, presumably). Is there a
parameter I can use instead of wdLine? It does not seem
to accept wdParagraph or wdTableCell or anything like
that...
Steve Wylie
table, and the one below it, and merges them both into
one cell:
Selection.MoveDown Unit:=wdLine, Count:=1,
Extend:=wdExtend
Selection.Cells.Merge
However this macro does not work when the current cell
contains text of more than one line (because of
the 'Unit:=wdLine' bit, presumably). Is there a
parameter I can use instead of wdLine? It does not seem
to accept wdParagraph or wdTableCell or anything like
that...
Steve Wylie