Copy sheet to another specified file

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

Hi,

I have the need to, due to memory when running an
automating macro have the information from a sheet in its
entirety copied (paste special, all equivelant) using a
button to do so. Can you tell me how I would code this
please. The sheet name is just sheet1.

Many Thanks.

Rob
 
With worksheets("Sheet1")
.cells.copy
.cells.PasteSpecial xlValues
End with

with replace all formulas in sheet1 with their displayed values.

If that isn't what you want, post back with a clear explanation of what you
are trying to do.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top