![]() |
auto run macro at workbook open
After using TS to open a workbook in XL2002 should I use
workbook_open or auto_run to activate a macro? I have tried both with no success. Sub Workbook_Open() '(for example) Range("A1").Select Selection.Copy Range("A2").Select ActiveSheet.Paste End Sub I've tried the same code using Auto_Run. Thanks |
auto run macro at workbook open
http://www.cpearson.com/excel/events.htm
-- Regards, Tom Ogilvy "Juan Guemes" wrote in message ... After using TS to open a workbook in XL2002 should I use workbook_open or auto_run to activate a macro? I have tried both with no success. Sub Workbook_Open() '(for example) Range("A1").Select Selection.Copy Range("A2").Select ActiveSheet.Paste End Sub I've tried the same code using Auto_Run. Thanks |
auto run macro at workbook open
You need to put the Workbook_Open code in the ThisWorkbook code
module, not a regular code module. Alternately, you can use Auto_Open (not Auto_Run) in a regular code module. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Juan Guemes" wrote in message ... After using TS to open a workbook in XL2002 should I use workbook_open or auto_run to activate a macro? I have tried both with no success. Sub Workbook_Open() '(for example) Range("A1").Select Selection.Copy Range("A2").Select ActiveSheet.Paste End Sub I've tried the same code using Auto_Run. Thanks |
All times are GMT +1. The time now is 06:29 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com