Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 20
Default Change Default Save As for Single worksheet

Hi
can anybody help - i need to change the default save as - im on exel 2000 -
but i only want it to save on the current workbook and not every excel
workbook.
Does anyone have any ideas please.
many thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Change Default Save As for Single worksheet

I don't think you can.

But you could use a macro that automates the copying, saving, and closing that
does it for you.

With hardly any testing or validity checks:

Option Explicit
Sub testme()
Dim res As Long

ActiveSheet.Copy 'to a new workbook

res = Application.Dialogs(xlDialogSaveAs).Show

If res = 0 Then
MsgBox "Not saved"
Else
MsgBox "Saved"
End If

ActiveSheet.Parent.Close savechanges:=False

End Sub




Pammi J wrote:

Hi
can anybody help - i need to change the default save as - im on exel 2000 -
but i only want it to save on the current workbook and not every excel
workbook.
Does anyone have any ideas please.
many thanks


--

Dave Peterson
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
Change default font for single workbook simonc Excel Discussion (Misc queries) 5 July 10th 08 07:30 PM
default save directory for a templated worksheet Mike Lang New Users to Excel 2 September 8th 06 11:08 PM
How do we Extract/Save a single worksheet out of a Mutlipage workb Tom Excel Discussion (Misc queries) 2 March 16th 06 02:58 PM
Save a single worksheet in Excel as a single file. Dakota New Users to Excel 4 February 22nd 06 04:46 PM
Change worksheet radian default Scrungie Excel Discussion (Misc queries) 1 September 12th 05 10:37 PM


All times are GMT +1. The time now is 06:36 AM.

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

About Us

"It's about Microsoft Excel"