We can close workbook by using ‘Close method of workbook object in Excel VBA. It closes the workbook object. Please find the following brief description about close method of workbook object.
Why we need to Close a Workbook using VBA?
Once we perform the tasks in Excel Workbook, we need to close the workbook. And the whenever we want we can reopen Workbook again.
VBA Close Workbook – Syntax
Here is the syntax to close workbook using VBA.
Workbooks(“Your Workbook Name”).Close(
In the above syntax we are using ‘Close’ method of workbook object to close the workbook.
VBA Close Workbook: Example 1
Please find the below example, It will take you through to close workbook where SaveChanges:=True.
Sub Close_Workbook() Dim Wkb As Workbook Set Wkb = Workbooks.Open("D:Sample.xlsx") Wkb.Close Savechanges:=True End Sub
Explanation:
In the above example we have created variable named Wkb in the first statement. We have used Open method of workbook object to open specified workbook named ‘D:Sample.xlsx’ and then assigned it to object named Wkb in the second statement. At last in the third statement we have used ‘Close’ method of workbook object to close above specified workbook. Finally we have mentioned ‘Savechanges:=True’, that means if we have done any changes in the worksheet it will save the changes.
VBA Close Workbook: Example 2
Please find the below example to close workbook where SaveChanges:=False.
Sub Close_Workbook() Workbooks (“ D:Sample.xlsx").Close Savechanges:=False End Sub
Explanation:
The above example is same as like example 1 which we explained in the above. The difference is we have mentioned ‘Savechanges:=False, that means if we made any changes in the worksheet it discards any changes that have been made to it.
VBA Close Workbook: Example 3
Please find the below example to close workbook where SaveChanges:=False.
Sub Close_Workbook() ActiveWorkbook.Close End Sub
Explanation:
The above mentioned code closes the active workbook.
VBA Close Workbook – Instructions
Please follow the below step by step instructions to execute the above mentioned VBA macros or codes:
- Open an Excel Workbook
- Press Alt+F11 to Open VBA Editor
- Insert a Module from Insert Menu
- Copy the above code for activating a range and Paste in the code window(VBA Editor)
- Save the file as macro enabled workbook
- Press ‘F5’ to run it or Keep Pressing ‘F8’ to debug the code line by line.