Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Auto adding a macro when Excel 2003 opens

I want to add a macro we created to users machines without having to modify
the book.xlt template. I have noticed that the XLSTART folder does not work
like the STARTUP folder for word. The only way that I have been able to get
this to work is to hide the page in the workbook with the macro, name it to
personal.xls and save it to the xlstart folder. This way the default
template opens and the user can access the macro from the Tools -- Macros
list but the name of the macro is prefaced with personal.xls.
Is this the only way of adding Macros without modifying the base template?
If so is there a way to have Excel not preface the macro name with
personal.xls?
Any help would be appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Auto adding a macro when Excel 2003 opens

Why dont you build an excel Add-In?

For help Refer
http://www.fontstuff.com/VBA/vbatut03.htm

If this post helps click Yes
---------------
Jacob Skaria


"gigabyteconsulting" wrote:

I want to add a macro we created to users machines without having to modify
the book.xlt template. I have noticed that the XLSTART folder does not work
like the STARTUP folder for word. The only way that I have been able to get
this to work is to hide the page in the workbook with the macro, name it to
personal.xls and save it to the xlstart folder. This way the default
template opens and the user can access the macro from the Tools -- Macros
list but the name of the macro is prefaced with personal.xls.
Is this the only way of adding Macros without modifying the base template?
If so is there a way to have Excel not preface the macro name with
personal.xls?
Any help would be appreciated.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Auto adding a macro when Excel 2003 opens

I created the file as an add-in and added the add-in the first time I opened
a blank woorkbook but when I go into the macros section there is no macro
listed. Not sure why it is not showing.

"Jacob Skaria" wrote:

Why dont you build an excel Add-In?

For help Refer
http://www.fontstuff.com/VBA/vbatut03.htm

If this post helps click Yes
---------------
Jacob Skaria


"gigabyteconsulting" wrote:

I want to add a macro we created to users machines without having to modify
the book.xlt template. I have noticed that the XLSTART folder does not work
like the STARTUP folder for word. The only way that I have been able to get
this to work is to hide the page in the workbook with the macro, name it to
personal.xls and save it to the xlstart folder. This way the default
template opens and the user can access the macro from the Tools -- Macros
list but the name of the macro is prefaced with personal.xls.
Is this the only way of adding Macros without modifying the base template?
If so is there a way to have Excel not preface the macro name with
personal.xls?
Any help would be appreciated.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Auto adding a macro when Excel 2003 opens

If you create an addin, then the macros in that addin won't be visible in the
tools|macro|macros dialog.

You'll have to give the users some way of running those macros.

For additions to the worksheet menu bar, I really like the way John Walkenbach
does it in his menumaker workbook:
http://j-walk.com/ss/excel/tips/tip53.htm

Here's how I do it when I want a toolbar:
http://www.contextures.com/xlToolbar02.html
(from Debra Dalgleish's site)

In xl2007, those toolbars and menu modifications will show up under the addins.

And if you use xl2007:

If you want to learn about modifying the ribbon, you can start at Ron de Bruin's
site:
http://www.rondebruin.nl/ribbon.htm
http://www.rondebruin.nl/qat.htm -- For macros for all workbooks (saved as an
addin)
or
http://www.rondebruin.nl/2007addin.htm

gigabyteconsulting wrote:

I created the file as an add-in and added the add-in the first time I opened
a blank woorkbook but when I go into the macros section there is no macro
listed. Not sure why it is not showing.

"Jacob Skaria" wrote:

Why dont you build an excel Add-In?

For help Refer
http://www.fontstuff.com/VBA/vbatut03.htm

If this post helps click Yes
---------------
Jacob Skaria


"gigabyteconsulting" wrote:

I want to add a macro we created to users machines without having to modify
the book.xlt template. I have noticed that the XLSTART folder does not work
like the STARTUP folder for word. The only way that I have been able to get
this to work is to hide the page in the workbook with the macro, name it to
personal.xls and save it to the xlstart folder. This way the default
template opens and the user can access the macro from the Tools -- Macros
list but the name of the macro is prefaced with personal.xls.
Is this the only way of adding Macros without modifying the base template?
If so is there a way to have Excel not preface the macro name with
personal.xls?
Any help would be appreciated.


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Auto adding a macro when Excel 2003 opens

Thank you

"Dave Peterson" wrote:

If you create an addin, then the macros in that addin won't be visible in the
tools|macro|macros dialog.

You'll have to give the users some way of running those macros.

For additions to the worksheet menu bar, I really like the way John Walkenbach
does it in his menumaker workbook:
http://j-walk.com/ss/excel/tips/tip53.htm

Here's how I do it when I want a toolbar:
http://www.contextures.com/xlToolbar02.html
(from Debra Dalgleish's site)

In xl2007, those toolbars and menu modifications will show up under the addins.

And if you use xl2007:

If you want to learn about modifying the ribbon, you can start at Ron de Bruin's
site:
http://www.rondebruin.nl/ribbon.htm
http://www.rondebruin.nl/qat.htm -- For macros for all workbooks (saved as an
addin)
or
http://www.rondebruin.nl/2007addin.htm

gigabyteconsulting wrote:

I created the file as an add-in and added the add-in the first time I opened
a blank woorkbook but when I go into the macros section there is no macro
listed. Not sure why it is not showing.

"Jacob Skaria" wrote:

Why dont you build an excel Add-In?

For help Refer
http://www.fontstuff.com/VBA/vbatut03.htm

If this post helps click Yes
---------------
Jacob Skaria


"gigabyteconsulting" wrote:

I want to add a macro we created to users machines without having to modify
the book.xlt template. I have noticed that the XLSTART folder does not work
like the STARTUP folder for word. The only way that I have been able to get
this to work is to hide the page in the workbook with the macro, name it to
personal.xls and save it to the xlstart folder. This way the default
template opens and the user can access the macro from the Tools -- Macros
list but the name of the macro is prefaced with personal.xls.
Is this the only way of adding Macros without modifying the base template?
If so is there a way to have Excel not preface the macro name with
personal.xls?
Any help would be appreciated.


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel auto opens twice Troy Excel Discussion (Misc queries) 0 January 19th 09 10:27 AM
Allow Auto Filter Within Macro in Excel 2003 (SP2) Pank New Users to Excel 2 May 14th 07 08:48 AM
Excel auto opens last saved file. Ducky Excel Discussion (Misc queries) 1 September 9th 05 07:20 PM
Excel - Auto opens files 173abn Excel Discussion (Misc queries) 2 December 17th 04 11:27 PM
Excel - Auto opens files jpeconi Excel Discussion (Misc queries) 0 December 17th 04 09:53 PM


All times are GMT +1. The time now is 04:08 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"