Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Saving Workbooks | Excel Discussion (Misc queries) | |||
Saving Workbooks w/ Charts | Excel Discussion (Misc queries) | |||
Saving sheets as their own workbooks? | Excel Programming | |||
Saving workbooks | Excel Programming | |||
Saving button on all workbooks | Excel Programming |