Hi all
This is the code I am using (which is working well) but I cannot seem to get it to not copy the formatting from the input sheet. Can someone please assist.
Thanks
This is the code I am using (which is working well) but I cannot seem to get it to not copy the formatting from the input sheet. Can someone please assist.
Code:
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Dim copySheet As Worksheet
Dim pasteSheet As Worksheet
Set copySheet = Worksheets("Capture")
Set pasteSheet = Worksheets("Database")
copySheet.Range("D3:D46").Copy
pasteSheet.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).PasteSpecial Transpose:=True
Application.CutCopyMode = True
Application.ScreenUpdating = True
Range("D3:D46").ClearContents
MsgBox Prompt:="Your client has been succesfully saved to the database", Title:="Record Updated"
End Sub
Thanks