Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In Excel 97/2003 I can make one macro start other macros by having it click
each macro button created, but I cannot seem to be able to do this in Excel 2007. Would appreciate any help on this please. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe you didn't allow macros to run when you opened the workbook?
Is your security setting too high? SteveB wrote: In Excel 97/2003 I can make one macro start other macros by having it click each macro button created, but I cannot seem to be able to do this in Excel 2007. Would appreciate any help on this please. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I suspect the problem is that Excel 2007 won't let any macros run until you click the Security Bar Options button and choose to Enable content. This is a new security feature in 2007. As an aside: Since each button is a macro, the common way to do this is to write code such as this: Sub Master() myProd1 myProd2 myProd3 End sub Where myProd1 in the name of one procedure (macro) You can put this in the thisWorkbook object as Workbook_Open() myProd1 myProd2 myProd3 End sub If any of this helps, please click the Yes button. thisWorkbook object if you want it to run when you first open Excel -- Thanks, Shane Devenshire "SteveB" wrote: In Excel 97/2003 I can make one macro start other macros by having it click each macro button created, but I cannot seem to be able to do this in Excel 2007. Would appreciate any help on this please. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2003-2007 File conversion problems | Excel Discussion (Misc queries) | |||
Excell 2007 to 2003 problems | Excel Discussion (Misc queries) | |||
Excel Macros from 2003 to 2007 | Excel Discussion (Misc queries) | |||
2003--2007 convert problems | Excel Discussion (Misc queries) | |||
Excel 2007 problems w/Saves As 97-2003 | Excel Discussion (Misc queries) |