I think I would create a template workbook (*.xlt) and use that as a basis for
the new workbook.
Then I'd use something like:
Dim NewWkbk as workbook
set newwkbk = workbooks.add(template:="C:\yourtemplate.xlt")
I think you'll find that life is lots easier if you don't have to worry about
security settings and importing the code (or copying from one workbook to
another).
But if you want to try this, check out Chip Pearson's site:
http://cpearson.com/excel/vbe.aspx
Rligouri wrote:
>
> I have and excel workbook that uses VBA to create another workbook.
> There is also some vba code that I would like included in the new
> workbook. What is the best way to achieve that?
--
Dave Peterson