+ Reply to Thread
Results 1 to 3 of 3

Thread: 36 Worksheet, need to move to 36 new workbooks

  1. #1
    Registered User
    Join Date
    03-28-2008
    Posts
    88

    36 Worksheet, need to move to 36 new workbooks

    Thank you for your help. I have done a search and can't find what I am looking for.

    I am looking for a quick way to take my 36 work sheets and make them all into new work books.

    I know that I can copy - new work book for each one but I was hoping that there was a quicker way to do it.

    Again, thank you.

  2. #2
    Registered User
    Join Date
    03-28-2008
    Posts
    88

    Re: 36 Worksheet, need to move to 36 new workbooks

    Also is there a way to go the other direction?

  3. #3
    Forum Guru, retired Admin royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    25,637

    Re: 36 Worksheet, need to move to 36 new workbooks

    Do you want a macro to do this?

    If so try
    Option Explicit
    
    Sub ShtsToWorkBooks()
        Dim ws As Worksheet
        For Each ws In ThisWorkbook.Worksheets
            ws.Copy
            ActiveWorkbook.SaveAs ThisWorkbook.Path & Application.PathSeparator & ws.Name & ".xls"
            ActiveWorkbook.Close
        Next ws
    End Sub
    Hope that helps.

    RoyUK
    --------
    If you are pleased with a member's answer then use the Star icon to rate it, if you are pleased enough to part with cash consider a donation to Children in Need

    For Excel Tips & Solutions, free examples and tutorials why not check out my downloads

    New members please read & follow the Forum Rules

    Remember to mark your questions Solved and rate the answer(s)

+ 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.2.0