Save active sheet into new workbook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

How can you save just the active sheet into a new workbook (allowing the
user choose the location of the new workbook and add the required filename)?
 
You can create a new workbook containing only the one sheet with
code like

ActiveSheet.Copy

This will create a new workbook with one sheet. The user can then
save that workbook in the normal manner.
 
Thanks very much, it's easy when you know how!!!!!
--
Thanks,
MarkN


Chip Pearson said:
You can create a new workbook containing only the one sheet with
code like

ActiveSheet.Copy

This will create a new workbook with one sheet. The user can then
save that workbook in the normal manner.
 
What about saving copying the ActiveSheet into new Workbook as text i.e.
removing all forumla's so in essence you are doing a "paste special" with
values only?

I need help on this one!

Many thanks

Mark

MarkN said:
Thanks very much, it's easy when you know how!!!!!
 

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