PC Review


Reply
Thread Tools Rate Thread

Auto_open won't run on multiple files

 
 
augrection
Guest
Posts: n/a
 
      25th Apr 2008
I have 3 workbooks for weekly payroll: Management, Admins, and Agents.
Each file has 7 worksheets, named "Sunday", through "Saturday".
Different people pull up each file and some forget to select the
correct day before editing. So as my first try at VBA, created the
code below to select the correct worksheet.

My auto_open routines work fine if opening each file seperately. But
if selecting all three files and choosing open, only one auto_open
runs. Using xl 2003 on a network.



Sub auto_open()
Dim mydate As Date
mydate = Weekday(Now)
If mydate = 1 Then
ThisWorkbook.Sheets(1).Select
ElseIf mydate = 2 Then
ThisWorkbook.Sheets(2).Select
ElseIf mydate = 3 Then
ThisWorkbook.Sheets(3).Select
ElseIf mydate = 4 Then
ThisWorkbook.Sheets(4).Select
ElseIf mydate = 5 Then
ThisWorkbook.Sheets(5).Select
ElseIf mydate = 6 Then
ThisWorkbook.Sheets(6).Select
ElseIf mydate = 7 Then
ThisWorkbook.Sheets(7).Select
End If
End Sub


The filenames will change periodically and we only open all three
files at the end of the day. I tried using workbook_open with renaming
all three subroutines to unique names with the same results.

I'm also curious, what's the shortest code to accomplish the above?
 
Reply With Quote
 
 
 
 
Jim Cone
Guest
Posts: n/a
 
      25th Apr 2008
The auto_open sub goes in a standard module...
'--
Sub Auto_Open()
Dim mydate As Long
mydate = Weekday(Now)
ThisWorkbook.Sheets(mydate).Select
End Sub
'--
I've never seen your auto_open problem before, but that is probably
because I've never tried opening 3 workbooks at the same time with
event code in them.
No guarantee, but try this in each workbook open event code sub...

ThisWorkbook.RunAutoMacros xlAutoOpen
--
Jim Cone
Portland, Oregon USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)


"augrection"
wrote in message
I have 3 workbooks for weekly payroll: Management, Admins, and Agents.
Each file has 7 worksheets, named "Sunday", through "Saturday".
Different people pull up each file and some forget to select the
correct day before editing. So as my first try at VBA, created the
code below to select the correct worksheet.

My auto_open routines work fine if opening each file seperately. But
if selecting all three files and choosing open, only one auto_open
runs. Using xl 2003 on a network.



Sub auto_open()
Dim mydate As Date
mydate = Weekday(Now)
If mydate = 1 Then
ThisWorkbook.Sheets(1).Select
ElseIf mydate = 2 Then
ThisWorkbook.Sheets(2).Select
ElseIf mydate = 3 Then
ThisWorkbook.Sheets(3).Select
ElseIf mydate = 4 Then
ThisWorkbook.Sheets(4).Select
ElseIf mydate = 5 Then
ThisWorkbook.Sheets(5).Select
ElseIf mydate = 6 Then
ThisWorkbook.Sheets(6).Select
ElseIf mydate = 7 Then
ThisWorkbook.Sheets(7).Select
End If
End Sub


The filenames will change periodically and we only open all three
files at the end of the day. I tried using workbook_open with renaming
all three subroutines to unique names with the same results.

I'm also curious, what's the shortest code to accomplish the above?
 
Reply With Quote
 
augrection
Guest
Posts: n/a
 
      25th Apr 2008
I did have the auto_open subs in a standard module but started
experimenting when they wouldn't run.
I also tried opening multiple worksheets with just a simple "hello
world" message boxes and they all ran.
Thanks for the quick reply. I'll give it a try tomorrow.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Auto_Open macros "dies" when processing PowerPoint files with macros vba_nerd Microsoft Powerpoint 4 10th Apr 2006 05:35 AM
view multiple files in multiple windows on multiple screens. =?Utf-8?B?dGNvbQ==?= Microsoft Excel Misc 7 15th Sep 2005 09:35 PM
Batch file to start multiple excel files with auto_open() macro. Delay code needed pierrelap@gmail.com Microsoft Excel Programming 9 29th May 2005 07:02 AM
Problem with multiple Auto_Open Macro's F. Henderieckx Microsoft Excel Programming 9 28th Jan 2005 04:39 PM
Auto_open & Application.ontime in shared files Jan Grinwis Microsoft Excel Programming 0 17th Oct 2004 05:28 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:36 AM.