Hi,
Below i have a code that copies and pastes rows, which works great. However, it wipes the formulas that are in columns A,C,D, F,H,I. Is anyone able to advise on how i can edit the code to keep the formulas in place
Kind regards
Eve
Below i have a code that copies and pastes rows, which works great. However, it wipes the formulas that are in columns A,C,D, F,H,I. Is anyone able to advise on how i can edit the code to keep the formulas in place
VBA Code:
Application.ScreenUpdating = False
Range("A48:M63").Copy
Sheets("Completed_SVTs").Range("C" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A48:M63").Select
Application.CutCopyMode = False
Selection.ClearContents
Range("A1").Select
Application.ScreenUpdating = True
Kind regards
Eve