I'm trying to do something that should be fairly simple, but I'm having trouble. What I want is to copy the Used Range from my View1 sheet and paste only the values into my View1Pivot sheet. Here's the code I'm trying to use:
If I take out "Value" then the code works just fine at copying and pasting, but how do I change it to only give me the values?
Thanks,
John
Code:
'Copy the View1 Information
UPDT.Sheets("View1").UsedRange.Value.Copy Destination:=Tool.Sheets("View1Pivot").Cells(1, 1)
Thanks,
John