Create New Workbook and add VBA Code to using VBA

  • Thread starter Thread starter Rligouri
  • Start date Start date
R

Rligouri

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?
 
You can use code to create and modify other code by using the objects and
methods that are part of the Extensibility library. See
www.cpearson.com/Excel/VBE.aspx for details and example code.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)
 
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
 
Back
Top