Thread
:
Macro, or excel program to "Close All' while in a workspace
View Single Post
#
2
Posted to microsoft.public.excel.programming
Gary Brown[_5_]
external usenet poster
Posts: 236
Macro, or excel program to "Close All' while in a workspace
Put this macro in your Personal.xls workbook as a module...
'/=====================================/
Sub CloseEmAll()
Dim wb As Workbook
For Each wb In Workbooks
If UCase(wb.Name) < "PERSONAL.XLS" Then
' Application.DisplayAlerts = False
wb.Close
' Application.DisplayAlerts = True
End If
Next wb
End Sub
'/=====================================/
This will close all open workbooks, hidden or visible with the exception of
the Personal.xls. It will not save the opened workbooks.
To have Excel ask you if you want to save any changed workbooks, uncomment
the 'DisplayAlerts' lines.
HTH,
--
Gary Brown
"Carlton Patterson" wrote:
Hello all,
I usually run a couple of workbooks in one workspace and the only way to
close the workbooks within a workspace is to either:
1) Close each workbook individually
2) Holding the 'shift' key and clicking on 'file' and then clicking on
'close all'.
I have been trying to record a macro to make this easier, but without
any success.
Can someone either let me know if there is another way to close a number
of workbooks within a workspace or help me put together a macro or an
excel program that will alleviate this laborious action?
Cheers
Carlton
*** Sent via Developersdex
http://www.developersdex.com
***
Reply With Quote
Gary Brown[_5_]
View Public Profile
Find all posts by Gary Brown[_5_]