Thisworkbook.close closes work book but immediately reopens

Kemidan2014

Board Regular
Joined
Apr 4, 2022
Messages
226
Office Version
  1. 365
Platform
  1. Windows
Good morning. I have a spreadsheet that up to 12 people in my department will be using through out the day and I currently have a macro in it to close the workbook out after 15 minutes of inactivity because shareing the workbooks prevents some functionality of it.

with some of users when it closes it closes until the next time they open the file

WIth others when the Autoclose runs it closes the file but then immediately reopens the file.

what would be the reason for this?

in a seperate module:
VBA Code:
'Make Declarations
Option Explicit
Dim killtime As Variant
Dim Procedurename As String

Sub Starttimer()
'Run Stoptimer macro
Stoptimer
'Define killtime
killtime = Now + TimeValue("00:30:00")
'Define Procedurename
Procedurename = "Closethisworkbook"
'when time is up Run killtime and procedurename
  Application.OnTime killtime, Procedurename

End Sub



Sub Stoptimer()
On Error Resume Next
'When timer is stopped it prevents killtime and procedurename from running
Application.OnTime killtime, Procedurename, , False

End Sub

Sub Closethisworkbook()
'Run Stoptimer Macro
Stoptimer
'Closes and saves workbook

Workbooks("Customer Complaint Tracker.xlsm").Close SaveChanges:=True

End Sub

in This workbook:
Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Stoptimer

End Sub
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

Starttimer

End Sub

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)

Starttimer

End Sub
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
You have not declared killtime. Therefore it will be assumed to be local to each Sub and declared implicitly as Variant. When Stoptimer is called, killtime will be 0, so the timer will not actually be stopped. I am not certain this is causing your problem, but it is definitely a bug.

I strongly recommend to everyone that they use Option Explicit and declare variables. Doing so prevents a lot of bugs and runtime errors.

You appear to be using it as a global variable so it needs to be declared at the top of the module:

VBA Code:
Dim killtime As Double
 
Upvote 0
THank you for your assessment, Just to clarify you are asking me to replace "Dim killtime As Variant" with "Dim killtime as Double" in Seperate module correct? not adding to "Thisworkbook" section
 
Upvote 0
My mistake, you can ignore my post. When I scrolled down to read your post, the code scrolled and I did not see the declarations at the top of the module.
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,519
Members
448,968
Latest member
Ajax40

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