Deleting columns from a table with merged cells
问题 I'm trying to delete columns from a table which has horizontally merged cells Selection.MoveEnd Unit:=WdUnits.wdCell, Count:=3 Selection.Columns.Delete Eventhough columns are getting deleted, merged cells are removed in the process leaving a broken table. Almost similar approach to delete rows works fine as explained in this answer Workaround I'm doing something like this as work around Selection.MoveEnd Unit:=WdUnits.wdCell, Count:=3 Selection.MoveDown Unit:=WdUnits.wdLine, Count:=2, Extend: