Using VBA to close a workbook results in program hanging up and then opens repair pane on next open

bisel

Board Regular
Joined
Jan 4, 2010
Messages
223
Office Version
  1. 365
Platform
  1. Windows
I have a macro in my workbook that opens another Excel workbook to copy some data from it. At the end of my macro, I close the source workbook but lately this is resulting in the macro hanging up and after a period of time Excel shuts down. There is no error message, just hangs up.

I have tried two methods. In both methods the name wbCopyFrom, is the name of the source workbook.

Method 1 is quite simple ... only a single line of code ...
VBA Code:
:
:
wbCopyFrom.Close SaveChanges:=False
:
:


I just tried this method but with same result ...

VBA Code:
:
:
wbCopyFrom.Activate
Application.DisplayAlerts = False
ActiveWorkbook.Close
Application.DisplayAlerts = True
:
:

Any assistance is appreciated.

Regards,

Steve
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Hi Bisel. Are you using more than 1 instance of XL to open the wbcopyfrom wb? You should only use one. Do you have any wb close event code in the wbcopyfrom wb? This should work. HTH. Dave
Code:
Application.DisplayAlerts = False
wbCopyFrom.Close SaveChanges:=False
Set wbCopyFrom = Nothing
Application.DisplayAlerts = True
 
Upvote 0
Hi Bisel. Are you using more than 1 instance of XL to open the wbcopyfrom wb? You should only use one. Do you have any wb close event code in the wbcopyfrom wb? This should work. HTH. Dave
Code:
Application.DisplayAlerts = False
wbCopyFrom.Close SaveChanges:=False
Set wbCopyFrom = Nothing
Application.DisplayAlerts = True
Thx for reply.

No. I have only a single instance of Excel running. I do not have any other wb close event. I tried the code you recommended. Excel crashes at the point where I attempt to close the workbook.

I have found numerous threads using Google where many people are having this problem ... i.e., trying to use VBA to close a workbook.

Steve
 
Upvote 0
Here is a bit VBA code I am using to test things out. This code causes Excel to crash.

VBA Code:
Sub testclose()

Dim vFile As Variant
Dim wbCopyTo As Workbook
Dim wbCopyFrom As Workbook

Set wbCopyTo = ActiveWorkbook ' set the current active workbook equal to wbCopyTo to be the target workbook

MsgBox "Prompting to select source file"

' open source workbook and set the variable for defining the source workbook
    vFile = Application.GetOpenFilename("Excel Files (*.xl*)," & _
    "*.xl*", 1, "Select Excel File", "Open", False)
    
    If Cancel Then
    Exit Sub
    End If

Set wbCopyFrom = Workbooks.Open(vFile)

' Attempt to close workbook

MsgBox "Attempting to Close the source file"

Application.DisplayAlerts = False

wbCopyFrom.Close SaveChanges:=False
Application.DisplayAlerts = True



End Sub
 
Upvote 0
What happens if you save the changes? Does it also crash?
VBA Code:
Sub testclose()

    Dim vFile As Variant
    Dim wbCopyTo As Workbook
    Dim wbCopyFrom As Workbook

    Set wbCopyTo = ActiveWorkbook                     ' set the current active workbook equal to wbCopyTo to be the target workbook

    'MsgBox "Prompting to select source file"

    ' open source workbook and set the variable for defining the source workbook
    vFile = Application.GetOpenFilename("Excel Files (*.xl*)," & _
                                        "*.xl*", 1, "Select Excel File", "Open", False)

    If vFile = False Then
        Exit Sub
    End If

    Set wbCopyFrom = Workbooks.Open(vFile)

    ' Attempt to close workbook

    MsgBox "Workbook to close:" & vbCrLf & vbCrLf _
         & "Name: " & wbCopyFrom.Name & vbCrLf _
         & "Type: " & TypeName(wbCopyFrom), vbOKOnly, Application.Name

    'Application.DisplayAlerts = False
    Select Case MsgBox("Attempting to Close the source file" & vbCr & vbCr & "Save Changes?", vbYesNo + vbQuestion + vbDefaultButton2)
    Case vbYes
        DoEvents
        wbCopyFrom.Close SaveChanges:=True
        DoEvents
    Case vbNo
        DoEvents
        wbCopyFrom.Close SaveChanges:=False
        DoEvents
    End Select
    Application.DisplayAlerts = True
End Sub
 
Upvote 0
Additionally, will your macro run when Excel is started in Safe mode?
 
Upvote 0
What happens if you save the changes? Does it also crash?
VBA Code:
Sub testclose()

    Dim vFile As Variant
    Dim wbCopyTo As Workbook
    Dim wbCopyFrom As Workbook

    Set wbCopyTo = ActiveWorkbook                     ' set the current active workbook equal to wbCopyTo to be the target workbook

    'MsgBox "Prompting to select source file"

    ' open source workbook and set the variable for defining the source workbook
    vFile = Application.GetOpenFilename("Excel Files (*.xl*)," & _
                                        "*.xl*", 1, "Select Excel File", "Open", False)

    If vFile = False Then
        Exit Sub
    End If

    Set wbCopyFrom = Workbooks.Open(vFile)

    ' Attempt to close workbook

    MsgBox "Workbook to close:" & vbCrLf & vbCrLf _
         & "Name: " & wbCopyFrom.Name & vbCrLf _
         & "Type: " & TypeName(wbCopyFrom), vbOKOnly, Application.Name

    'Application.DisplayAlerts = False
    Select Case MsgBox("Attempting to Close the source file" & vbCr & vbCr & "Save Changes?", vbYesNo + vbQuestion + vbDefaultButton2)
    Case vbYes
        DoEvents
        wbCopyFrom.Close SaveChanges:=True
        DoEvents
    Case vbNo
        DoEvents
        wbCopyFrom.Close SaveChanges:=False
        DoEvents
    End Select
    Application.DisplayAlerts = True
End Sub
Yes. Removed the SaveChanges:=False and replaced with SaveChanges:=True. Still crashes.
 
Upvote 0
If you create a new, blank workbook and paste in your test code, does it crash then as well?
 
Upvote 0
If you create a new, blank workbook and paste in your test code, does it crash then as well?
Yes. I created blank workbook and saved as macro enabled workbook. Reopened this new workbook and ran the code above. Selected the workbook to open from the dialog box and when it attempted to close, Excel crashed.

When I reopen an instance of Excel, there is a window that shows the two files ... the original file and one I tried open/close. I can choose one or both of these files and attempt repair or whatnot. I generally just close that window.

Steve
 
Upvote 0

Forum statistics

Threads
1,215,102
Messages
6,123,099
Members
449,096
Latest member
provoking

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