Pinterest Pixel

Get the Count of Unsaved Workbooks Using Macros In Excel

Have many workbooks open and need a quick survey of unsaved files? Excel macros will get the... read more

Download Excel Workbook
Bryan
Posted on

Overview

Get the Count of Unsaved Workbooks Using Macros In Excel | MyExcelOnline

Have many workbooks open and need a quick survey of unsaved files? Excel macros will get the count of unsaved workbooks for you!

Make sure your Excel has the Developer Tab enabled following this tutorial.

I explain how you can do this below step by step!

What does it do?

Gets the count of unsaved workbooks

Copy Source Code:


Sub GetCountOfUnsavedWorkbooks()

Dim workbook As Workbook
Dim counter As Integer

For Each workbook In Workbooks
'Count the unsaved workbooks
If workbook.Saved = False Then
counter = counter + 1
End If
Next workbook

MsgBox "You have " & counter & " unsaved workbook(s)"

End Sub

Final Result: 

Get the Count of Unsaved Workbooks Using Macros In Excel

Exercise Workbooks:

Download excel workbook 1Get-the-Count-of-Unsaved-Workbooks.xlsm

Download excel workbook 2Get-the-Count-of-Unsaved-Workbooks2.xlsm


We have 2 workbooks open that have unsaved changes:

Get the Count of Unsaved Workbooks Using Macros In Excel Get the Count of Unsaved Workbooks Using Macros In Excel Get the Count of Unsaved Workbooks Using Macros In Excel

STEP 1: In any one of the workbooks, go to Developer > Code > Visual Basic

Get the Count of Unsaved Workbooks Using Macros In Excel | MyExcelOnline

 

STEP 2: Paste in your code and Select Save. Close the window afterwards.

Get the Count of Unsaved Workbooks Using Macros In Excel

 

STEP 3: Let us test it out!

Go to Developer > Code > Macros

Get the Count of Unsaved Workbooks Using Macros In Excel | MyExcelOnline

 

Make sure your macro is selected. Click Run.

Get the Count of Unsaved Workbooks Using Macros In Excel

 

With just one click, you now have the number of unsaved workbooks!

Get the Count of Unsaved Workbooks Using Macros In Excel

 

How to Get the Count of Unsaved Workbooks Using Macros In Excel

Get the Count of Unsaved Workbooks Using Macros In Excel | MyExcelOnline

101 Macros Book

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin

Get the Count of Unsaved Workbooks Using Macros In Excel | MyExcelOnline
Get the Count of Unsaved Workbooks Using Macros In Excel | MyExcelOnline
Bryan

Bryan is a best-selling book author of the 101 Excel Series paperback books.

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!