Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Macro Recorder

When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 320
Default Macro Recorder

AFAIK, you don't. You can always cut/paste it to the one you want.

"Gary''s Student" wrote in message
...
When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default Macro Recorder

I think if it's the first macro you've recorded in the session, it creates a
new module. If you record multiple macros in the session, it saves them in
the same one. I've not seen any way to identify which module procedures are
stored in when recording.
--
HTH,

Barb Reinhardt



"Gary''s Student" wrote:

When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Macro Recorder

Thanks
--
Gary''s Student - gsnu200908


"Bob Umlas" wrote:

AFAIK, you don't. You can always cut/paste it to the one you want.

"Gary''s Student" wrote in message
...
When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908


.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Macro Recorder

Thanks
--
Gary''s Student - gsnu200908


"Barb Reinhardt" wrote:

I think if it's the first macro you've recorded in the session, it creates a
new module. If you record multiple macros in the session, it saves them in
the same one. I've not seen any way to identify which module procedures are
stored in when recording.
--
HTH,

Barb Reinhardt



"Gary''s Student" wrote:

When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 523
Default Macro Recorder

You could specify a cetain name for the macro and then have an extra macro
(with a reference to the VBA extensibility module) which moves the recorded
macro (based on its name) to a module of your choice.

Are you not a bit beyond recording macros as a gold contributor?

Sam


"Gary''s Student" wrote:

When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Macro Recorder

Are you not a bit beyond recording macros as a gold contributor?

What's a "gold" contributor?

Regards,
Peter T



  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 461
Default Macro Recorder

It's some fluff MS built into their web interface for these newsgroups.

- Jon
-------
Jon Peltier
Peltier Technical Services, Inc.
http://peltiertech.com/



Peter T wrote:
Are you not a bit beyond recording macros as a gold contributor?


What's a "gold" contributor?

Regards,
Peter T



  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Macro Recorder

On Nov 20, 10:21*am, Gary''s Student
wrote:
When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908


Gary,

1. In Excel and close any open workbooks.
2. Open the .xla file.
3. Open the Visual Basic Editor.
4. In the VBAProject window, select the workbook for the xla file.
5. In the Properties window, change IsAddin from True to False.
6. Go back to the Excel Window.
7. On the Visual Basic toolbar, press the run macro button.
8. A list of macros should appear. Select the one that you want to
assign the shortcut to.
9. Press the Options Button.
10. Add the shortcut and press OK. Repeat for any other macros you
want to assign shortcuts.
11. Press Cancel.
12. Go back to Visual Basic Editor and make IsAddin True.
13. Close Visual Basic Editor.
14. Close Excel.
15 Save changes to .xla file.

Chuck
  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 298
Default Macro Recorder

....and what's wrong with recording a macro now and then ?

Tim

"Jon Peltier" wrote in message
...
It's some fluff MS built into their web interface for these newsgroups.

- Jon
-------
Jon Peltier
Peltier Technical Services, Inc.
http://peltiertech.com/



Peter T wrote:
Are you not a bit beyond recording macros as a gold contributor?


What's a "gold" contributor?

Regards,
Peter T





  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Macro Recorder

Fluff is not all bad, either! <g



"Tim Williams" wrote in message
...
...and what's wrong with recording a macro now and then ?

Tim

"Jon Peltier" wrote in message
...
It's some fluff MS built into their web interface for these newsgroups.

- Jon
-------
Jon Peltier
Peltier Technical Services, Inc.
http://peltiertech.com/



Peter T wrote:
Are you not a bit beyond recording macros as a gold contributor?

What's a "gold" contributor?

Regards,
Peter T





  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Macro Recorder

When memory begins to fail, recording a macro can save time in finding
syntax for certain things. In this case, memory is neither RAM nor ROM.


"Sam Wilson" wrote in message
...
You could specify a cetain name for the macro and then have an extra macro
(with a reference to the VBA extensibility module) which moves the
recorded
macro (based on its name) to a module of your choice.

Are you not a bit beyond recording macros as a gold contributor?

Sam


"Gary''s Student" wrote:

When I record a macro, the dialogbox allows me to specify the macro's
name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded
macro
should be placed?
--
Gary''s Student - gsnu200908



  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Macro Recorder

Hi Sam:

I use the Recorder out of habit for certain tasks. Applying formats to
pivot tables, for example.

b.t.w

Don't let the Gold fool you. I am, after all, still only a Student.
--
Gary''s Student - gsnu200909


"Sam Wilson" wrote:

You could specify a cetain name for the macro and then have an extra macro
(with a reference to the VBA extensibility module) which moves the recorded
macro (based on its name) to a module of your choice.

Are you not a bit beyond recording macros as a gold contributor?

Sam


"Gary''s Student" wrote:

When I record a macro, the dialogbox allows me to specify the macro's name
and a shortcut key.

How do I specify in which of the existing modules the newly recorded macro
should be placed?
--
Gary''s Student - gsnu200908

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
Macro Recorder Minitman Excel Programming 4 April 22nd 09 11:35 PM
My excel macro recorder no longer shows up when recording macro jack Excel Discussion (Misc queries) 1 February 5th 07 09:31 PM
My excel macro recorder no longer shows up when recording macro jack Excel Discussion (Misc queries) 3 February 5th 07 08:22 PM
Macro recorder Fossil_Rock Excel Discussion (Misc queries) 1 July 30th 05 08:10 PM
Macro recorder David Excel Programming 8 June 13th 05 04:51 AM


All times are GMT +1. The time now is 11:35 PM.

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"