Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default Is this even possible????

I want this statement to run upon opening my excel file. I have this code
located in the This workbook tab and i want it to call the Sub Main in the
Worksheet info if it is inbetween this time. I know this code isn't right
but can and how can you do this.

Private Sub Workbook_Open()
If Time "12:10:00" And Time < "12:30:00" Then Call Main
End Sub
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default Is this even possible????

Private Sub Workbook_Open()
If Time TimeValue("12:10:00 PM") And _
Time < TimeValue("12:30:00 PM") Then Call Main
End Sub

--
Regards,
Tom Ogilvy

"Lost and Looking for Help" wrote:

I want this statement to run upon opening my excel file. I have this code
located in the This workbook tab and i want it to call the Sub Main in the
Worksheet info if it is inbetween this time. I know this code isn't right
but can and how can you do this.

Private Sub Workbook_Open()
If Time "12:10:00" And Time < "12:30:00" Then Call Main
End Sub

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,327
Default Is this even possible????

Hi

One way among several:

Select Case Time
Case TimeSerial(12, 10, 0) To TimeSerial(12, 30, 0)
Call Main
Case Else
End Select

HTH. Best wishes Harald

"Lost and Looking for Help"
skrev i melding
...
I want this statement to run upon opening my excel file. I have this code
located in the This workbook tab and i want it to call the Sub Main in the
Worksheet info if it is inbetween this time. I know this code isn't right
but can and how can you do this.

Private Sub Workbook_Open()
If Time "12:10:00" And Time < "12:30:00" Then Call Main
End Sub



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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



All times are GMT +1. The time now is 08:03 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"