Results 1 to 3 of 3

Copy multiple sheets to new workbook

Threaded View

  1. #1
    Registered User
    Join Date
    10-01-2009
    Location
    Manassas, VA
    MS-Off Ver
    Excel 2007
    Posts
    86

    Copy multiple sheets to new workbook

    I would like to copy sheet "PPR", "Consolidation", "Pivot" to a new workbook and prompt user to input a name and then save this new workbook to the same Dir

    My idea is to have a button on the Main sheet for user to click - in turn will make a copy of the 3 existing templates above into a new workbook, execute the codes and save.

    I found this piece of code from ms, but it can only move to an existing wb.

    I hope you can help me with this function.

    Thank you,

    Sub Mover3()
       Dim BkName As String
       Dim NumSht As Integer
       Dim BegSht As Integer
    
       'Starts with second sheet - replace with index number of starting sheet.
       BegSht = 2
       'Moves two sheets - replace with number of sheets to move.
       NumSht = 3
       BkName = ActiveWorkbook.Name
        
        For x = 1 To NumSht
          'Moves second sheet in source to front of designated workbook.
          Workbooks(BkName).Sheets(BegSht).Move _
             Before:=Workbooks("Test.xls").Sheets(1)
             'In each loop, the next sheet in line becomes indexed as number 2.
          'Replace Test.xls with the full name of the target workbook you want.
        Next
    End Sub
    I think I have the prompt for name & save on the same location
        Dim filNAME As String
        filNAME = InputBox("Please Enter Prompt Pay Month")
        File = ThisWorkbook.Path & "\Report " & filNAME
        ActiveWorkbook.SaveAs Filename:=File, FileFormat:=xlOpenXMLWorkbook, _
                CreateBackup:=False
        Application.DisplayAlerts = True
                MsgBox ("File Saved As " & ThisWorkbook.Path & "\Report " & _
        filNAME & ".xls. OK To Continue!")
    Attached Files Attached Files
    Last edited by NTB; 05-11-2010 at 08:53 AM.

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