Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
i have written a macro that saves the users file in the appropriate file on the server when they type the job name in a certain cell (if they type 23190, is saves to \\EST-server-1\EST\Quotes\23000\23100\.... i would like to make this faster in the case that the file already exists and the MS prompt comes up, 'File found, would you like to save over it?'. i would like my program to automatically enter yes rather than have user click yes (or type y) i know its picky, but it gets annoying after the 100th time each day. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Lawson,
Application.DisplayAlerts = False 'your save code Application.DisplayAlerts = True --- Regards, Norman "Lawson" wrote in message ... Hello, i have written a macro that saves the users file in the appropriate file on the server when they type the job name in a certain cell (if they type 23190, is saves to \\EST-server-1\EST\Quotes\23000\23100\.... i would like to make this faster in the case that the file already exists and the MS prompt comes up, 'File found, would you like to save over it?'. i would like my program to automatically enter yes rather than have user click yes (or type y) i know its picky, but it gets annoying after the 100th time each day. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
try .... application.displayalerts=false 'save code application.displayalerts=true -----Original Message----- Hello, i have written a macro that saves the users file in the appropriate file on the server when they type the job name in a certain cell (if they type 23190, is saves to \\EST-server-1\EST\Quotes\23000\23100\.... i would like to make this faster in the case that the file already exists and the MS prompt comes up, 'File found, would you like to save over it?'. i would like my program to automatically enter yes rather than have user click yes (or type y) i know its picky, but it gets annoying after the 100th time each day. . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs . . . Application.DisplayAlerts = True -- Regards, Tom Ogilvy "Lawson" wrote in message ... Hello, i have written a macro that saves the users file in the appropriate file on the server when they type the job name in a certain cell (if they type 23190, is saves to \\EST-server-1\EST\Quotes\23000\23100\.... i would like to make this faster in the case that the file already exists and the MS prompt comes up, 'File found, would you like to save over it?'. i would like my program to automatically enter yes rather than have user click yes (or type y) i know its picky, but it gets annoying after the 100th time each day. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Save, save as, page setup dimmed out in unprotected excel sheet? | Excel Discussion (Misc queries) | |||
SAVE and SAVE AS options disappeared from the drop down FILE menu | Excel Discussion (Misc queries) | |||
Save As and save current numbers not the actual formulas and links | Excel Discussion (Misc queries) | |||
Why system asks me to save change even after I call save method(VB.NET) | Excel Programming | |||
Save As - Multiple Sheets fails to save as text file | Excel Programming |