Excel Macro code to Close all Workbooks at Once

How to Close all Workbooks at Once in excel sheet through VBA Macro Code

To use VBA macro code in an Excel spreadsheet, you need to do the following:

  1. Open the Excel spreadsheet where you want to use the macro code.

  2. Press “Alt + F11” to open the VBA developer window.

  3. In the VBA developer window, click the “Insert” menu and select “Module” to create a new module.

  4. Paste the VBA macro code into the module window.

  5. To run the macro, click the “Run” button in the VBA developer window or press “F5” on your keyboard.

Alternatively, you can also create a button or a shortcut key to run the macro. To create a button, go to the “Developer” tab in the main Excel window and click the “Insert” button. Then select a button control and draw it on the worksheet. Right-click the button and select “Assign Macro” to assign the macro code to the button. To create a shortcut key, go to the “Macros” tab in the VBA developer window, select the macro from the list, and click the “Options” button. Then, enter a shortcut key in the “Shortcut key” field.

Note: If you are running the macro for the first time, you may need to enable macros in Excel by going to the “File” tab and selecting “Options.” Under the “Trust Center” settings, click the “Trust Center Settings” button and go to the “Macro Settings” tab. Select “Enable all macros” and click “OK.”

Copy Below VBA Macro Code for Close all Workbooks at Once
Sub CloseAllWorkbooks()
Dim wbs As Workbook
For Each wbs In Workbooks
wbs.Close SaveChanges:=True
Next wb
End Sub

Use this macro code to close all open workbooks. This macro code will first check all the workbooks one by one and close them. If any of the worksheets is not saved, you’ll get a message to save it.

RECENTLY UPLOADED EXCEL TEMPLATES

house-cleaning-schedule

House Cleaning Schedule

A house cleaning schedule can be a very helpful tool when you need to get your home ready for a guest. But, …

Download Now
purchase order

Purchase Order

This purchase order template for Excel is a simple and budget friendly solution for your business. If you need to create, …

Download Now
meeting-agenda-calculated

Meeting agenda list

Meetings are usually convened with list of agendas to be put up. Usually personal assistants and meeting managers circulate the …

Download Now
printable-daily-planner

Printable daily planner

Organize your daily plans and activities using Spreadsheet and Microsoft Excel. You can use this excel template to create your …

Download Now
time-card-calculator

Time card calculator

This Time Card Calculator spreadsheet is free timesheet calculator in Microsoft Excel. You can customize the time card specifically for the use …

Download Now
meeting-sign-in-sheet

Meeting Attendance Report

Do you need Meeting Attendance Report or meeting printable sign in sheet for your office, class, seminar, or open house? …

Download Now
%d bloggers like this: