ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   In Excel 2007 how to switch off macro with a macro (https://www.excelbanter.com/excel-programming/398058-excel-2007-how-switch-off-macro-macro.html)

Micky

In Excel 2007 how to switch off macro with a macro
 
Spreadsheet "A" runs a macro that opens spreadsheet "B". It gets data and
then closes "B" without saving (other spread sheets access "B" and deposit
data). A, then uses data for report.

However, when "B" opens it runs its own macros (the code doesn't ask it to
do this) and this creates a mess.

Otto Moehrbach

In Excel 2007 how to switch off macro with a macro
 
Micky
Apparently, Workbook B has code that runs automatically when that file
is opened. What you have to do is either change that code so that it does
you no harm or delete it. Post back if you need more. HTH Otto
"Micky" wrote in message
...
Spreadsheet "A" runs a macro that opens spreadsheet "B". It gets data and
then closes "B" without saving (other spread sheets access "B" and deposit
data). A, then uses data for report.

However, when "B" opens it runs its own macros (the code doesn't ask it to
do this) and this creates a mess.




Greg Lovern

In Excel 2007 how to switch off macro with a macro
 

If B's macros are being run from B's Workbook_Open event, then use
Application.EnableEvents:

Dim bEnableEvents as Boolean
bEnableEvents = Application.EnableEvents
Application.EnableEvents = False
'<open B here
Application.EnableEvents = bEnableEvents

But that won't help if B's macros are being run from an auto_open
macro. In that case, since you're only reading data, you could leave B
closed and read the data from A either with formulas or with an ODBC
query.

Another option if you're in charge of the other workbooks' macros:
From the macros in the other workbooks that write to B, or in B's

Workbook_BeforeClose event, save out text files with the data. Then
open those text files in A instead of opening B.


Greg Lovern
http://PrecisionCalc.com


On Sep 24, 1:44 pm, Micky wrote:
Spreadsheet "A" runs a macro that opens spreadsheet "B". It gets data and
then closes "B" without saving (other spread sheets access "B" and deposit
data). A, then uses data for report.

However, when "B" opens it runs its own macros (the code doesn't ask it to
do this) and this creates a mess.





All times are GMT +1. The time now is 10:40 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com