remote module

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

Guest

i am creating an excel template document, using VBA to help make data entry easier. my problem is that the template file is becoming very large. i am wondering if it is possible to create a public module that is not linked to any one file, but that can be accessed by any file. This way my template (and all documents created using it) will not be so large

thank
karin
 
Karin,

Modules must always exist inside of a workbook. (You can export a
module to a text file, but then it is just a text file, and you
can't call its procedures.) You might want to consider writing
all the common procedures in a module in an Add-In, and have all
the client workbooks reference that add-in.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


karin said:
i am creating an excel template document, using VBA to help
make data entry easier. my problem is that the template file is
becoming very large. i am wondering if it is possible to create
a public module that is not linked to any one file, but that can
be accessed by any file. This way my template (and all documents
created using it) will not be so large.
 
try using Personal.xl

----- karin wrote: ----

i am creating an excel template document, using VBA to help make data entry easier. my problem is that the template file is becoming very large. i am wondering if it is possible to create a public module that is not linked to any one file, but that can be accessed by any file. This way my template (and all documents created using it) will not be so large

thank
karin
 

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