copy destination values
This works
Worksheets("sheet1").Range("b17:o17").Copy _
Destination:=Worksheets("Week " & WeekSheet).Cells(NextRow, "F")
But I only want to copy the values not the formats. So how do I change the
above to paste just the values?
|