Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Is it possible to save only a specific sheet within a workbook

Is there a save-as option instead of copying sheet from workbook to save it
separately?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,942
Default Is it possible to save only a specific sheet within a workbook

hi
xl does not have this feature built in. but it is possible. as an ex-lotus
user, i got use to one of it's features call save range. so i wrote a macro
for that in excel. I have the macro in my personal file in the xl start
folder so that it will be available for all files and runit from a custom
menu item.
Sub mac1SaveRange()

'Macro written by FSt1 4/27/00

Dim cnt As Long
Dim cell As Range


ActiveSheet.UsedRange.Select
If Selection.Cells.Count = 1 Then
If MsgBox("You have selected only one cell. Continue?????", vbYesNo,
"Warning") = vbNo Then
Exit Sub
End If
End If
cnt = 0
For Each cell In Selection
If Not IsEmpty(cell) Then
cnt = cnt + 1
End If
Next
If cnt = 0 Then
If MsgBox("There is no data in the selected range. Continue?!?!?!?!?",
vbYesNo, "Warning") = vbNo Then
Exit Sub
End If
End If
Selection.Copy
Workbooks.Add
Range("A1").PasteSpecial xlPasteAll
Application.Dialogs(xlDialogSaveAs).Show
End Sub


Post back if you need help setting it up.

regards
FSt1
"ali1h" wrote:

Is there a save-as option instead of copying sheet from workbook to save it
separately?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 510
Default Is it possible to save only a specific sheet within a workbook

Hi


How do you copy the sheet now? Simply copy-paste, or do you copy the sheet
(right-click on sheet tabMove or copyTo book: (new book)check 'Create a
copy'OK)

Or I'm completly missing your point?



--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )



"ali1h" wrote in message
...
Is there a save-as option instead of copying sheet from workbook to save
it
separately?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Is it possible to save only a specific sheet within a workbook

"Move or Copy Sheet" will let you move or copy to a new workbook, so you can
save there.
--
David Biddulph

"ali1h" wrote in message
...
Is there a save-as option instead of copying sheet from workbook to save
it
separately?



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 38
Default Is it possible to save only a specific sheet within a workbook

On Jan 15, 9:15 am, "David Biddulph" <groups [at] biddulph.org.uk
wrote:
"Move or Copy Sheet" will let you move or copy to a new workbook, so you can
save there.
--
David Biddulph

"ali1h" wrote in message

...

Is there a save-as option instead of copying sheet from workbook to save
it
separately?


You can always use [Ctrl] + drag to drop the sheet tab into either
another worksheet or that gray area when your sheets are not maximized.


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
save workbook created from templete to a specific folder imh Excel Discussion (Misc queries) 1 June 2nd 06 11:29 PM
Select sheet tabs in workbook & save to separate workbook files stratocaster Excel Worksheet Functions 2 March 1st 06 03:35 PM
How do I open a workbook in a specific sheet PetterSn Excel Discussion (Misc queries) 3 January 12th 06 06:44 AM
how to copy a sheet to a specific workbook lm Excel Discussion (Misc queries) 1 October 14th 05 06:56 PM
Can I only save one sheet out of the workbook? PeterM Excel Discussion (Misc queries) 4 September 1st 05 04:42 AM


All times are GMT +1. The time now is 02:59 PM.

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"