JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
'Copy the View1 Information
UPDT.Sheets("View1").UsedRange.Value.Copy Destination:=Tool.Sheets("View1Pivot").Cells(1, 1)
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,
With UPDT.Sheets("View1").UsedRange
Tool.Sheets("View1Pivot").Cells(1, 1).Resize(.Rows.Count, .Columns.Count).Value = .Value
End With
Re your reported post, we don't mark threads solved here - this isn't ExcelForum. (it's working for a start.
)
Thanks Rory,
Would the resizing type routine run faster than the copy/paste routine? It seems like it would, because it bypasses the clipboard. I'm stringing a lot of operations together, so the faster routines are very much appreciated.
Thanks for letting me know about not marking the posts 'Solved'. I'll try to remember that next time I'm here.
Thanks,