Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
how do i create a macro in excel to run other macros in different excel
workbooks? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() In tools options under the general tab there's a secrtion called Alternative startup file location. set that to (for example) c:\my documents Then.... create a new work book and then save it into that directory and call it "macros.xls", Create a new macro when it asks for it's storage location (dependant on how you create a macro) save is into the spreadsheet you've just created (ie macros.xls). once done resave it *but* before you do save it hide the workbook (window - hide). This way everytime you open a new (or existing) spreadsheet the macro(s) will available to you. When you need to add or change a macro to the "macros.xls" spreadsheet you'll need to unhide it, amke the necessary changes, re-hide and save. HTH, if you need to have anything more clearly explained please ask Mr_Ben -- mr_ben ------------------------------------------------------------------------ mr_ben's Profile: http://www.excelforum.com/member.php...o&userid=37106 View this thread: http://www.excelforum.com/showthread...hreadid=569369 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Option Explicit
Sub testme02() Dim OtherWkbk As Workbook Set OtherWkbk = Workbooks("book1.xls") Application.Run "'" & OtherWkbk.Name & "'!macronamehere" End Sub Marie-Therese wrote: how do i create a macro in excel to run other macros in different excel workbooks? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hide Macro's in Toolbar / Macro's list | Excel Discussion (Misc queries) | |||
how do I run excel 4.0 macros on excel 2000 | Excel Discussion (Misc queries) | |||
Excel crashes while opening excel file imbeddied with macros | Excel Discussion (Misc queries) | |||
Enabling macros | Excel Discussion (Misc queries) | |||
Transferring toolbars and macros to other computers | Excel Discussion (Misc queries) |