Excel 2002: Can I save all files by just one click ?

M

Mr. Low

Hi,

I have 10 working files in an active window.

There is no Save All button under the file menu.

May I know if I can save all the files at one click without having to exit
excel ?


Thanks

Low
 
M

Max

This delivers it in 2 clicks ...
Hold down Shift key, click File > Close All
Then click "Yes to All" in the ensuing prompt to save changes
Success? Celebrate it, hit the YES below
 
H

Harald Staff

Hi Low

A macro solution, assign it to a toolbar button:

Sub SaveAll()
Dim WB As Workbook
For Each WB In Application.Workbooks
WB.Save
DoEvents
Next
End Sub

HTH. Best wishes Harald
 
M

Mr. Low

Hi Harald Staff,

Thanks for the codes.

May I know how to assign a button at the tool bar for this code ?

Any URL to explain it in detail ?

Thanks

Low
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top