paulcherianc
Member
Hi Experts!
I am not able to copy paste the range to another sheet as I am having some merged cells on the Sheet "Signatories" which needs to be placed on the Sheet "TANP". Can anyone help me to fix this!
I am not able to copy paste the range to another sheet as I am having some merged cells on the Sheet "Signatories" which needs to be placed on the Sheet "TANP". Can anyone help me to fix this!
Code:
Sub Signatories()
Worksheets("Signatories").Range("A1:AN15").copy
With Sheets("TANP").Range("J" & Rows.Count).End(xlUp).Offset(1, 0)
.PasteSpecial xlPasteFormats
.PasteSpecial xlPasteValues
End With
End Sub