Do you know how to create a new sheet in a file by macro?

D

dukejas

I need to export data to a file and seperate the data every day.

Do you know how to create a new sheet in a file by macro? How to apply
an existing macro to a new file without creat marcro and copy the code
every time? Because when I export data to a existing file, the macro
is lost.


Thanks a lot ! ---new bird
 
K

Kevin Beckham

The simplest way is to have a "template" worksheet that
contains the macro. Copy this sheet to the new workbook
then copy the data onto the sheet, viz.
ThisWorkbook.Worksheets("templateSheet").Copy
Set myNewSheet = ActiveSheet

This will copy the named sheet into a new workbook and
retain a reference to the new sheet for data transfer

Kevin Beckham
 

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

Top