+ Reply to Thread
Results 1 to 4 of 4

Save a single sheet from a workbook

  1. #1
    JAMES T.
    Guest

    Save a single sheet from a workbook

    Is there a way to save a single sheet from a workbook instead of saving
    the whole book.


  2. #2
    Jason Morin
    Guest

    Re: Save a single sheet from a workbook

    No. The best you can do is delete all the other sheets
    and save the workbook under a new name.

    HTH
    Jason
    Atlanta, GA

    >-----Original Message-----
    >Is there a way to save a single sheet from a workbook

    instead of saving
    >the whole book.
    >
    >.
    >


  3. #3
    Bob Phillips
    Guest

    Re: Save a single sheet from a workbook

    You can do it with VBA

    Sub SaveThis()
    Dim sFilename As String
    Activesheet.Copy
    sFilename = Application.GetSaveAsFilename( _
    fileFilter:="Excel Files (*.xls), *.xls")
    If sFilename <> False Then
    ActiveWorkbook.SaveAs sFilename
    End If

    End Sub


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Jason Morin" <[email protected]> wrote in message
    news:[email protected]...
    > No. The best you can do is delete all the other sheets
    > and save the workbook under a new name.
    >
    > HTH
    > Jason
    > Atlanta, GA
    >
    > >-----Original Message-----
    > >Is there a way to save a single sheet from a workbook

    > instead of saving
    > >the whole book.
    > >
    > >.
    > >




  4. #4
    JE McGimpsey
    Guest

    Re: Save a single sheet from a workbook

    Sure. Choose Edit/Move or Copy Sheet and copy the sheet to a new
    workbook. Save the workbook.

    In article <[email protected]>,
    "JAMES T." <[email protected]> wrote:

    > Is there a way to save a single sheet from a workbook instead of saving
    > the whole book.


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1