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

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
.
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,653
Messages
6,120,749
Members
448,989
Latest member
mariah3

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