Sep 29, 2000 #1 thgma2 Technical User Joined Jul 12, 2000 Messages 2 Location GB How do I create a macro in Excel 2000 that auto runs when the file is opened? [sig][/sig]
Sep 29, 2000 #2 dsi Programmer Joined Mar 13, 2000 Messages 964 Location US This should be the same as previous versions of Excel. You can use the Autpen Macro to run code upon opening a file, assuming the user Enables Macros. Sub Autpen() 'Do your stuff here End Sub Hope this helps! [sig][/sig] Upvote 0 Downvote
This should be the same as previous versions of Excel. You can use the Autpen Macro to run code upon opening a file, assuming the user Enables Macros. Sub Autpen() 'Do your stuff here End Sub Hope this helps! [sig][/sig]
Oct 1, 2000 #3 BobCrawf MIS Joined Jun 19, 1999 Messages 75 Location US The code needs to be placed on the This Workbook modual using VBE. [sig][/sig] Upvote 0 Downvote