+ Reply to Thread
Results 1 to 13 of 13

save active sheet

  1. #1
    VilMarci
    Guest

    save active sheet

    Hi,

    How can I save only the active sheet of a workbook in VBA?

    Marci



  2. #2
    William
    Guest

    Re: save active sheet


    Sub test()
    ActiveSheet.Copy
    ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\Test.xls"
    ActiveWorkbook.Close
    End Sub

    What did you want to happen to the original workbook?
    --


    XL2003
    Regards

    William
    willwest22@yahoo.com


    "VilMarci" <dontsend@here.com> wrote in message
    news:%2303MpFsWFHA.3140@TK2MSFTNGP14.phx.gbl...
    > Hi,
    >
    > How can I save only the active sheet of a workbook in VBA?
    >
    > Marci
    >
    >




  3. #3
    VilMarci
    Guest

    Re: save active sheet

    Hi,

    Thanks for the quick reply.
    The main task would be to separate the workbook into separate files per
    sheet.

    Marton


    "William" <willwest22@yahoo.com> wrote in message
    news:Opq4QQsWFHA.3760@TK2MSFTNGP15.phx.gbl...
    >
    > Sub test()
    > ActiveSheet.Copy
    > ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\Test.xls"
    > ActiveWorkbook.Close
    > End Sub
    >
    > What did you want to happen to the original workbook?
    > --
    >
    >
    > XL2003
    > Regards
    >
    > William
    > willwest22@yahoo.com
    >
    >
    > "VilMarci" <dontsend@here.com> wrote in message
    > news:%2303MpFsWFHA.3140@TK2MSFTNGP14.phx.gbl...
    > > Hi,
    > >
    > > How can I save only the active sheet of a workbook in VBA?
    > >
    > > Marci
    > >
    > >

    >
    >




  4. #4
    Registered User
    Join Date
    01-31-2005
    Posts
    11
    This should save them in seperate workbooks...

    Sub test()

    Dim iNoSheets As Integer
    Dim i As Integer

    iNoSheets = Worksheets.Count

    For i = 1 To iNoSheets
    Worksheets(i).Activate
    ActiveSheet.Copy
    ActiveWorkbook.SaveAs Filename:="C:\Test" & i & ".xls"
    ActiveWorkbook.Close
    Next

    End Sub

  5. #5
    Andibevan
    Guest

    Re: save active sheet

    Hi,

    The code provided will do that - the activesheet.copy command is not like
    copy and paste. It creates a copy of the active sheet, in a new workbook.
    The new workbook is then saved, thus saving your sheet.

    Andi

    "VilMarci" <dontsend@here.com> wrote in message
    news:OMpHj%23sWFHA.2128@TK2MSFTNGP14.phx.gbl...
    Hi,

    Thanks for the quick reply.
    The main task would be to separate the workbook into separate files per
    sheet.

    Marton


    "William" <willwest22@yahoo.com> wrote in message
    news:Opq4QQsWFHA.3760@TK2MSFTNGP15.phx.gbl...
    >
    > Sub test()
    > ActiveSheet.Copy
    > ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\Test.xls"
    > ActiveWorkbook.Close
    > End Sub
    >
    > What did you want to happen to the original workbook?
    > --
    >
    >
    > XL2003
    > Regards
    >
    > William
    > willwest22@yahoo.com
    >
    >
    > "VilMarci" <dontsend@here.com> wrote in message
    > news:%2303MpFsWFHA.3140@TK2MSFTNGP14.phx.gbl...
    > > Hi,
    > >
    > > How can I save only the active sheet of a workbook in VBA?
    > >
    > > Marci
    > >
    > >

    >
    >





  6. #6
    Tom Ogilvy
    Guest

    Re: save active sheet

    Sub test()
    Dim sh as Worksheet
    for each sh in Worksheets
    sh.Copy
    Application.displayAlerts = False
    ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\" & _
    sh.Name & ".xls"
    Application.displayAlerts = True
    ActiveWorkbook.Close Savechanges:=False
    Next
    End Sub

    --
    Regards,
    Tom Ogilvy

    "VilMarci" <dontsend@here.com> wrote in message
    news:OMpHj%23sWFHA.2128@TK2MSFTNGP14.phx.gbl...
    > Hi,
    >
    > Thanks for the quick reply.
    > The main task would be to separate the workbook into separate files per
    > sheet.
    >
    > Marton
    >
    >
    > "William" <willwest22@yahoo.com> wrote in message
    > news:Opq4QQsWFHA.3760@TK2MSFTNGP15.phx.gbl...
    > >
    > > Sub test()
    > > ActiveSheet.Copy
    > > ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\Test.xls"
    > > ActiveWorkbook.Close
    > > End Sub
    > >
    > > What did you want to happen to the original workbook?
    > > --
    > >
    > >
    > > XL2003
    > > Regards
    > >
    > > William
    > > willwest22@yahoo.com
    > >
    > >
    > > "VilMarci" <dontsend@here.com> wrote in message
    > > news:%2303MpFsWFHA.3140@TK2MSFTNGP14.phx.gbl...
    > > > Hi,
    > > >
    > > > How can I save only the active sheet of a workbook in VBA?
    > > >
    > > > Marci
    > > >
    > > >

    > >
    > >

    >
    >




  7. #7
    VilMarci
    Guest

    Re: save active sheet

    Thanks for you all!

    This .copy I didn't know.

    I have a lot of linked cells. Is it possible to use and save the current
    static values, so the persons who receives the standalone sheets will have
    all the data they need?

    Marton

    "Tom Ogilvy" <twogilvy@msn.com> wrote in message
    news:Oiox2MtWFHA.1152@tk2msftngp13.phx.gbl...
    > Sub test()
    > Dim sh as Worksheet
    > for each sh in Worksheets
    > sh.Copy
    > Application.displayAlerts = False
    > ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\" & _
    > sh.Name & ".xls"
    > Application.displayAlerts = True
    > ActiveWorkbook.Close Savechanges:=False
    > Next
    > End Sub
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "VilMarci" <dontsend@here.com> wrote in message
    > news:OMpHj%23sWFHA.2128@TK2MSFTNGP14.phx.gbl...
    > > Hi,
    > >
    > > Thanks for the quick reply.
    > > The main task would be to separate the workbook into separate files per
    > > sheet.
    > >
    > > Marton
    > >
    > >
    > > "William" <willwest22@yahoo.com> wrote in message
    > > news:Opq4QQsWFHA.3760@TK2MSFTNGP15.phx.gbl...
    > > >
    > > > Sub test()
    > > > ActiveSheet.Copy
    > > > ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\Test.xls"
    > > > ActiveWorkbook.Close
    > > > End Sub
    > > >
    > > > What did you want to happen to the original workbook?
    > > > --
    > > >
    > > >
    > > > XL2003
    > > > Regards
    > > >
    > > > William
    > > > willwest22@yahoo.com
    > > >
    > > >
    > > > "VilMarci" <dontsend@here.com> wrote in message
    > > > news:%2303MpFsWFHA.3140@TK2MSFTNGP14.phx.gbl...
    > > > > Hi,
    > > > >
    > > > > How can I save only the active sheet of a workbook in VBA?
    > > > >
    > > > > Marci
    > > > >
    > > > >
    > > >
    > > >

    > >
    > >

    >
    >




  8. #8
    VilMarci
    Guest

    Re: save active sheet

    Solved.

    Thank you all again!

    Marton

    "VilMarci" <dontsend@here.com> wrote in message
    news:%23y2HrdtWFHA.2128@TK2MSFTNGP14.phx.gbl...
    > Thanks for you all!
    >
    > This .copy I didn't know.
    >
    > I have a lot of linked cells. Is it possible to use and save the current
    > static values, so the persons who receives the standalone sheets will have
    > all the data they need?
    >
    > Marton
    >
    > "Tom Ogilvy" <twogilvy@msn.com> wrote in message
    > news:Oiox2MtWFHA.1152@tk2msftngp13.phx.gbl...
    > > Sub test()
    > > Dim sh as Worksheet
    > > for each sh in Worksheets
    > > sh.Copy
    > > Application.displayAlerts = False
    > > ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\" & _
    > > sh.Name & ".xls"
    > > Application.displayAlerts = True
    > > ActiveWorkbook.Close Savechanges:=False
    > > Next
    > > End Sub
    > >
    > > --
    > > Regards,
    > > Tom Ogilvy
    > >
    > > "VilMarci" <dontsend@here.com> wrote in message
    > > news:OMpHj%23sWFHA.2128@TK2MSFTNGP14.phx.gbl...
    > > > Hi,
    > > >
    > > > Thanks for the quick reply.
    > > > The main task would be to separate the workbook into separate files

    per
    > > > sheet.
    > > >
    > > > Marton
    > > >
    > > >
    > > > "William" <willwest22@yahoo.com> wrote in message
    > > > news:Opq4QQsWFHA.3760@TK2MSFTNGP15.phx.gbl...
    > > > >
    > > > > Sub test()
    > > > > ActiveSheet.Copy
    > > > > ActiveWorkbook.SaveAs Filename:="C:\MyFolder\MySubFolder\Test.xls"
    > > > > ActiveWorkbook.Close
    > > > > End Sub
    > > > >
    > > > > What did you want to happen to the original workbook?
    > > > > --
    > > > >
    > > > >
    > > > > XL2003
    > > > > Regards
    > > > >
    > > > > William
    > > > > willwest22@yahoo.com
    > > > >
    > > > >
    > > > > "VilMarci" <dontsend@here.com> wrote in message
    > > > > news:%2303MpFsWFHA.3140@TK2MSFTNGP14.phx.gbl...
    > > > > > Hi,
    > > > > >
    > > > > > How can I save only the active sheet of a workbook in VBA?
    > > > > >
    > > > > > Marci
    > > > > >
    > > > > >
    > > > >
    > > > >
    > > >
    > > >

    > >
    > >

    >
    >




  9. #9
    Forum Contributor
    Join Date
    05-09-2005
    Location
    SC
    Posts
    196

    Saving a worksheet

    Hello,

    With this code, how do I call an input box so that the user can enter a file name (e.g. todays date), then save the workbook. Or maybe let the macro grab the date from the sheet and save it as the file name.

    Sub test()
    ActiveSheet.Copy
    ActiveWorkbook.SaveAs Filename:="C:\ArchiveFolder\Test.xls"
    ActiveWorkbook.Close
    End Sub

    Thanks,
    EMoe

  10. #10
    Registered User
    Join Date
    04-04-2009
    Location
    N/A
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: save active sheet

    Just a bump for this to say thanks. Helped me out with one I was writing today!

  11. #11
    Valued Forum Contributor nigelbloomy's Avatar
    Join Date
    11-06-2013
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    1,011

    Re: save active sheet

    Just found this in a Google search and though I would add in the method to let a user select where to save a file as well as to only put values and formats into the new file.
    I know everyone says to use CutCopyMose to get rid of the selection lines. That works fine and it does clear the memory of all the data selected so you don't get an error message that there is a lot of data on the clipboard when you go to save. I also added in Range("A1").select because otherwise when you open the new file the whole usedrange is selected. It's a small thing, but I get annoyed when I open a file and huge areas are already selected.

    Please Login or Register  to view this content.
    Some people volunteer in soup kitchens or hospitals. I choose to make the world better by trying to help you with Excel. We're all learning.

    <---Click * Add Reputation for all helpful comments. It's like giving a smile.
    Forum Rules: How to mark your post [Solved] and have a happier, Excel enriched life.

  12. #12
    Registered User
    Join Date
    09-02-2017
    Location
    Romania
    MS-Off Ver
    2013
    Posts
    2

    Re: save active sheet

    hi everybody ,

    I am trying to save a worksheet as a new file , but for some reason I get upon an error .
    Please Login or Register  to view this content.
    This is the code that I use
    The V1 cell looks like : C:\Users\Dell\Desktop\Richeste\Richieste no103 - 5/5/2018mat_prod.xls it has this formula : ="C:\Users\Dell\Desktop\Richeste\Richieste no"&E5&"mat_prod.xls"

    If I use a simple name - it works , but if I use this one it gives me an error : Capture.PNG


    Any ideea what am i doing wrong ?

    Thanks a lot
    Tudor

  13. #13
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: save active sheet

    Tudor, welcome to the forum

    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

+ 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