So I need to paste the values only of a range of data into the sheet "MasterList". I was looking for ways to do this and found this:
.PasteSpecial Paste:=xlPasteValues
How should I go about changing my code so that I can use the .PasteSpecial Paste:=xlPasteValues function? I'm thinking I need two lines of code to accomplish this but I can't figure out the syntax...
Dim Lastrow As Integer
Lastrow = Cells(15, 3).Value + 3
Dim Copyrange As String
Startrow = 3
Let Copyrange = "I" & Startrow & ":" & "K" & Lastrow
Range(Copyrange).Select
Selection.Copy
Sheets.Add.Name = "MasterList"
**ActiveSheet.Paste Destination:=Range("A1")**
ActiveSheet.Move