Excel Start run macro

Copper Contributor

I have a spreadsheet with a macro that needs to be updated every day. It would be great if this could happen at say 6AM daily, the macro run. This way when users come to work the spreadsheet will up to date. Any suggestions.

 

Thanks

1 Reply
Here you go .. please run the below code.

Private Sub Workbook_Open( )
Application.OnTime TimeValue("06:00:00"), "Your Macro"
End Sub

Here is the link for more info ...
https://www.brainbell.com/tutorials/ms-office/excel/Run_A_Macro_At_A_Set_Time.htm