Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
JDub
 
Posts: n/a
Default Sharing macros and buttons that accompany the macro

I have created macros that I wish to share with my co-workers. Also, I have
created custom buttons to accompany those macros. I have been researching
how to share these buttons and macros, but to no success. Is there any way I
can share custom buttons and macros?

I found an export module option in Visual Basic, but am a little hesitant to
try importing anything on another persons computer without knowing it will
work.

Thanks for any help!

  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Sharing macros and buttons that accompany the macro

If you want to add an option 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://groups.google.co.uk/groups?th...5B41%40msn.com

JDub wrote:

I have created macros that I wish to share with my co-workers. Also, I have
created custom buttons to accompany those macros. I have been researching
how to share these buttons and macros, but to no success. Is there any way I
can share custom buttons and macros?

I found an export module option in Visual Basic, but am a little hesitant to
try importing anything on another persons computer without knowing it will
work.

Thanks for any help!


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Dave Breitenbach
 
Posts: n/a
Default Sharing macros and buttons that accompany the macro

We've just done this in our office.

There is a file called personal.xls where you can add macros that will be
available for any excel workbook instead of just one. If everyone in your
office opens excel from the same server location you may only have to add the
macro to one version of personal.xls. If you each have excel on your
individual desktops, it may have to be added for every user.

See http://office.microsoft.com/en-us/as...872961033.aspx
for more info.

Once you have the macro available everyone can add a button that uses the
macro by customizing the toolbars on top(right click in toolbar area and
click customize, etc.).

If you have multiple servers this could be a bit more tricky as it was in
our case, but your Sys admin should be able to help.

hth,
Dave


"Dave Peterson" wrote:

If you want to add an option 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://groups.google.co.uk/groups?th...5B41%40msn.com

JDub wrote:

I have created macros that I wish to share with my co-workers. Also, I have
created custom buttons to accompany those macros. I have been researching
how to share these buttons and macros, but to no success. Is there any way I
can share custom buttons and macros?

I found an export module option in Visual Basic, but am a little hesitant to
try importing anything on another person€„˘s computer without knowing it will
work.

Thanks for any help!


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
JDub
 
Posts: n/a
Default Sharing macros and buttons that accompany the macro

This didn't make much sense to me. Perhaps my skill with VBA is to basic to
understand it. I did, however, figure out to copy and paste the personal.xls
file in my co-workers computer. I only need to figure out how to copy my
buttons created for them. I have approximatley 20 macros and do not want to
create 20 buttons on 21 laptops. Any ideas how to copy over the buttons?

"Dave Peterson" wrote:

If you want to add an option 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://groups.google.co.uk/groups?th...5B41%40msn.com

JDub wrote:

I have created macros that I wish to share with my co-workers. Also, I have
created custom buttons to accompany those macros. I have been researching
how to share these buttons and macros, but to no success. Is there any way I
can share custom buttons and macros?

I found an export module option in Visual Basic, but am a little hesitant to
try importing anything on another person€„˘s computer without knowing it will
work.

Thanks for any help!


--

Dave Peterson

  #5   Report Post  
Posted to microsoft.public.excel.misc
Dave Breitenbach
 
Posts: n/a
Default Sharing macros and buttons that accompany the macro

Not off hand. But they dont need the buttons to run the macros. Once the
personal.xls has the macros, they can select tools, macro, macros and select
the macro they want to run and run it from there. to the extent a user would
like the benefit of a button they can add it. I did it by adding one menu
and then adding buttons under each.


I've pasted my instructions for my colleagues below for adding a menu with
buttons. Perhaps by sending the instructions, only those that would like to
use them can do it themselves. These are for Excel 2002, but they can
probably be easily adaptde to other versions.


To add menu/buttons€¦

1. right click in grey area to the right (outside) of any of your toolbars
at the top of Excel and select €ścustomize€ť
2. click on Commands tab, and select new menu; click and drag New Menu from
right pane of commands window up to the right of your rightmost menu(probably
the Help menu)
3. leave the customize window open for steps 3-6, right click on new menu
and select name, and rename €śMacros€ť
4. right click on new menu and select €śbegin a group€ť; select Macros in the
Commands tab of the Customize window and click and drag Custom menu item from
right pane of Commands window to newly created Macros menu, and then(without
letting go of mouse button) drag to small grey (empty) box under menu.
5. right click on custom menu item and click €śName€ť and rename appropriately
for each macro
6. right click on renamed custom menu item and select €śassign macro€ť and
click on corresponding macro.
7. close customize window

Dave


"JDub" wrote:

This didn't make much sense to me. Perhaps my skill with VBA is to basic to
understand it. I did, however, figure out to copy and paste the personal.xls
file in my co-workers computer. I only need to figure out how to copy my
buttons created for them. I have approximatley 20 macros and do not want to
create 20 buttons on 21 laptops. Any ideas how to copy over the buttons?

"Dave Peterson" wrote:

If you want to add an option 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://groups.google.co.uk/groups?th...5B41%40msn.com

JDub wrote:

I have created macros that I wish to share with my co-workers. Also, I have
created custom buttons to accompany those macros. I have been researching
how to share these buttons and macros, but to no success. Is there any way I
can share custom buttons and macros?

I found an export module option in Visual Basic, but am a little hesitant to
try importing anything on another person€„˘s computer without knowing it will
work.

Thanks for any help!


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
JDub
 
Posts: n/a
Default Sharing macros and buttons that accompany the macro

Thank you!!!! very much!

You saved me a lot of time.

"Dave Breitenbach" wrote:

Not off hand. But they dont need the buttons to run the macros. Once the
personal.xls has the macros, they can select tools, macro, macros and select
the macro they want to run and run it from there. to the extent a user would
like the benefit of a button they can add it. I did it by adding one menu
and then adding buttons under each.


I've pasted my instructions for my colleagues below for adding a menu with
buttons. Perhaps by sending the instructions, only those that would like to
use them can do it themselves. These are for Excel 2002, but they can
probably be easily adaptde to other versions.


To add menu/buttons€¦

1. right click in grey area to the right (outside) of any of your toolbars
at the top of Excel and select €ścustomize€ť
2. click on Commands tab, and select new menu; click and drag New Menu from
right pane of commands window up to the right of your rightmost menu(probably
the Help menu)
3. leave the customize window open for steps 3-6, right click on new menu
and select name, and rename €śMacros€ť
4. right click on new menu and select €śbegin a group€ť; select Macros in the
Commands tab of the Customize window and click and drag Custom menu item from
right pane of Commands window to newly created Macros menu, and then(without
letting go of mouse button) drag to small grey (empty) box under menu.
5. right click on custom menu item and click €śName€ť and rename appropriately
for each macro
6. right click on renamed custom menu item and select €śassign macro€ť and
click on corresponding macro.
7. close customize window

Dave


"JDub" wrote:

This didn't make much sense to me. Perhaps my skill with VBA is to basic to
understand it. I did, however, figure out to copy and paste the personal.xls
file in my co-workers computer. I only need to figure out how to copy my
buttons created for them. I have approximatley 20 macros and do not want to
create 20 buttons on 21 laptops. Any ideas how to copy over the buttons?

"Dave Peterson" wrote:

If you want to add an option 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://groups.google.co.uk/groups?th...5B41%40msn.com

JDub wrote:

I have created macros that I wish to share with my co-workers. Also, I have
created custom buttons to accompany those macros. I have been researching
how to share these buttons and macros, but to no success. Is there any way I
can share custom buttons and macros?

I found an export module option in Visual Basic, but am a little hesitant to
try importing anything on another person€„˘s computer without knowing it will
work.

Thanks for any help!

--

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
Which Macro Runs...? Bill Martin Excel Discussion (Misc queries) 7 September 29th 05 01:42 PM
excel 2003 - macros & buttons mikey New Users to Excel 2 May 19th 05 12:51 PM
How to copy a workbook so the buttons run the macros? - Excel Discussion (Misc queries) 4 May 16th 05 12:24 AM
sharing macros fabulousk Excel Discussion (Misc queries) 3 March 7th 05 11:05 PM
Format Macro Buttons? Ken Excel Discussion (Misc queries) 5 March 2nd 05 09:40 PM


All times are GMT +1. The time now is 04:27 AM.

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

About Us

"It's about Microsoft Excel"