Closing File/Auto respond to dialog

Jeffrey Mahoney

Well-known Member
Joined
May 31, 2015
Messages
2,788
Office Version
  1. 365
Platform
  1. Windows
Sharepoint has a feature that allows me to "Checkout" an excel workbook and open it directly in excel (not in browser mode). I have macros that automatically close the file after 15 minutes of non use. This worked fine until some sort of sharepoint add-in asks a user if they want to check the file back in upon closing.

How do I programmatically click YES during close?

Capture.PNG



This sub gets called using Application.OnTime

VBA Code:
Sub CloseAndSave()
  Dim NextTime As Date
  
  If Timer - Idle > 900 Then              '900 seconds = 15 minutes
    If ThisWorkbook.ReadOnly = False Then
      ThisWorkbook.Close savechanges:=True
    End If
    Exit Sub
  End If
  
  'Debug.Print Timer - Idle
  NextTime = Now() + TimeValue("00:15:00")
  Application.OnTime NextTime, "CloseAndSave"
  
End Sub
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,214,954
Messages
6,122,461
Members
449,085
Latest member
ExcelError

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