Save and Close workbook at a certain time

Teleporpoise

New Member
Joined
May 23, 2019
Messages
31
Hi Mr. Excel Friends,

I want to have my workbook save and close certain times in the day. I have tried inputting this code in the "This Workbook" object:

Code:
Sub Close_Workbook()


    Dim Wkb As Workbook
    If Time() = Time.Value("13:30:00") Then
        ThisWorkbook.Close SaveChanges:=True
    End If
    
End Sub
But it isn't working. Can you help me?

Thanks,
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
.
Here is one method :

Paste this macro in the ThisWorkbook module :

Code:
Option Explicit


Private Sub Workbook_Open()
    Call ScheduleClose
End Sub


Paste this in a Regular module :

Code:
Sub ScheduleClose()
    Application.OnTime Now + TimeSerial(13, 30, 0), "Kamikaze"
End Sub


Sub Kamikaze()
   
    Application.DisplayAlerts = False
    ThisWorkbook.Saved = True
    Application.Quit
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,516
Messages
6,119,979
Members
448,934
Latest member
audette89

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