auto start excel file on specific time

Hans810

Board Regular
Joined
Dec 1, 2005
Messages
63
Dear All,

I have a delivery time programm (clients to be delivered the next day) which I would like to run every night at a specific time.
Is there any MS tool to trigger the Excel file??
Or do we have to use the "old" batch file ( if yes, pls send example)?

Any help is very much appreciated.

Thanks in advance!
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Hi

I launch a bat file from the Task Scheduler to open an Excel file each day without problems.

Scheduler
Run: "C:\Documents and Settings\Fred Bloggs\Desktop\My_Macros.Bat"
Start in: "C:\Documents and Settings\Fred Bloggs\Desktop\My_Macros.Bat"

Don't forget to set scheduled time.

Bat file (My_Macros.Bat) on desktop
start excel "C:\Documents and Settings\Fred Bloggs\My Documents\My Macros\My_Macros.xls"


To start a specific macro you can add a call in a workbook_open event in the ThisWorkbook of the VBA project.


Code:
Private Sub Workbook_Open()
Run "MyMacro"
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,912
Messages
6,175,340
Members
452,637
Latest member
Ezio2866

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top