Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
USH USH is offline
external usenet poster
 
Posts: 7
Default button for saving all workbooks

hello !
anybody anybody knows that excel
has a "SAVE" button with a Floppy icon,
int the File Menu..

when you press this button you save the current workbook..

What if i have to save all open workbooks ???

tx !!
paolo
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default button for saving all workbooks

same button.


"USH" wrote in message
...
hello !
anybody anybody knows that excel
has a "SAVE" button with a Floppy icon,
int the File Menu..

when you press this button you save the current workbook..

What if i have to save all open workbooks ???

tx !!
paolo



  #3   Report Post  
Posted to microsoft.public.excel.programming
USH USH is offline
external usenet poster
 
Posts: 7
Default button for saving all workbooks

maybe its a lot of open workbooks !!
and for some special reason i cant use autosave..




"JLGWhiz" wrote:

same button.


"USH" wrote in message
...
hello !
anybody anybody knows that excel
has a "SAVE" button with a Floppy icon,
int the File Menu..

when you press this button you save the current workbook..

What if i have to save all open workbooks ???

tx !!
paolo



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default button for saving all workbooks

Maybe this will help:

http://www.dummies.com/how-to/conten...indows-xp.html



"USH" wrote in message
...
maybe its a lot of open workbooks !!
and for some special reason i cant use autosave..




"JLGWhiz" wrote:

same button.


"USH" wrote in message
...
hello !
anybody anybody knows that excel
has a "SAVE" button with a Floppy icon,
int the File Menu..

when you press this button you save the current workbook..

What if i have to save all open workbooks ???

tx !!
paolo



.



  #5   Report Post  
Posted to microsoft.public.excel.programming
USH USH is offline
external usenet poster
 
Posts: 7
Default button for saving all workbooks

tx all !
one more idea..
is it possible to set that sub as function of excel instead than insed a
workbook ?


"JLGWhiz" wrote:

Maybe this will help:

http://www.dummies.com/how-to/conten...indows-xp.html



"USH" wrote in message
...
maybe its a lot of open workbooks !!
and for some special reason i cant use autosave..




"JLGWhiz" wrote:

same button.


"USH" wrote in message
...
hello !
anybody anybody knows that excel
has a "SAVE" button with a Floppy icon,
int the File Menu..

when you press this button you save the current workbook..

What if i have to save all open workbooks ???

tx !!
paolo


.



.



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default button for saving all workbooks

None that I know of.


Gord

On Wed, 19 May 2010 09:31:01 -0700, USH
wrote:

tx all !
one more idea..
is it possible to set that sub as function of excel instead than insed a
workbook ?


"JLGWhiz" wrote:

Maybe this will help:

http://www.dummies.com/how-to/conten...indows-xp.html



"USH" wrote in message
...
maybe its a lot of open workbooks !!
and for some special reason i cant use autosave..




"JLGWhiz" wrote:

same button.


"USH" wrote in message
...
hello !
anybody anybody knows that excel
has a "SAVE" button with a Floppy icon,
int the File Menu..

when you press this button you save the current workbook..

What if i have to save all open workbooks ???

tx !!
paolo


.



.


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default button for saving all workbooks

Don't know what autosave has to do with it but add this macro to your
Personal.xls

NOTE: will save all open workbooks without asking "do you want to save?"

Sub saveall()
Dim wb As Workbook
Application.DisplayAlerts = False
For Each wb In Application.Workbooks
wb.Save
Next
Application.DisplayAlerts = True
End Sub


Gord Dibben MS Excel MVP

On Tue, 18 May 2010 05:49:01 -0700, USH
wrote:

maybe its a lot of open workbooks !!
and for some special reason i cant use autosave..




"JLGWhiz" wrote:

same button.


"USH" wrote in message
...
hello !
anybody anybody knows that excel
has a "SAVE" button with a Floppy icon,
int the File Menu..

when you press this button you save the current workbook..

What if i have to save all open workbooks ???

tx !!
paolo



.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Saving Workbooks Jamad Excel Discussion (Misc queries) 2 April 10th 08 03:33 PM
Saving Workbooks w/ Charts Bob Barnes Excel Discussion (Misc queries) 1 April 22nd 07 04:08 PM
Saving sheets as their own workbooks? notDave Excel Programming 1 February 15th 06 08:59 PM
Saving workbooks Dell[_2_] Excel Programming 1 March 1st 04 04:02 PM
Saving button on all workbooks Todd Huttenstine[_2_] Excel Programming 3 December 29th 03 12:11 PM


All times are GMT +1. The time now is 10:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"