Hello
I am trying to copy an entire row, then insert it just below (formats only), which includes two merged cells. I have tried with the method below:
Rows(ActiveCell.Row).Copy Destination:=Rows(ActiveCell.Row + 1).Insert
(I arrive at the row after Selection.End(xlDown).Select, as I have...