+ Reply to Thread
Results 1 to 2 of 2

Copy and paste into new sheet if VBA

Hybrid View

  1. #1
    Registered User
    Join Date
    06-01-2011
    Location
    London, Englad
    MS-Off Ver
    Excel 2003
    Posts
    1

    Copy and paste into new sheet if VBA

    Hi,
    I have a code (detailed below) which copys and pastes data and formula into a new sheet and creates a new sheet for all different variables in column A. This works fine for copying from one sheet, now I need it to look into the second sheet named "non resources" and do the same but copy and paste both sheets information on to one summary sheet in the same workbook. Any help is much appriciatted.

    Private Sub CommandButton1_Click()
    Dim thisSheet As String
    Dim columnNames As Integer
    Dim uniqueRows As Integer
    Dim lastRow As Long
    Dim shName As String
    Application.ScreenUpdating = False
    
    thisSheet = ActiveSheet.Name
    lastRow = ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell).Row
    Range("A3:B3").Select
    Selection.UnMerge
    Range("A3").Select
    Range(Selection, Selection.End(xlDown)).Select
    Range("A3:A" & lastRow).AdvancedFilter Action:=xlFilterInPlace, Unique:=True
    Selection.Copy
    Sheets.Add After:=Sheets(Sheets.Count)
    ActiveSheet.Name = "temp"
    ActiveSheet.PasteSpecial
    Sheets(thisSheet).Select
    Application.CutCopyMode = False
    ActiveSheet.ShowAllData
    columnNames = 2
    Do
        columnNames = columnNames + 1
        
    Loop Until Sheets(thisSheet).Cells(3, columnNames + 1) = ""
    
    
    Do
        uniqueRows = uniqueRows + 1
    Loop Until Sheets("temp").Cells(uniqueRows + 1, 1) = ""
    
    For x = 2 To uniqueRows
        Sheets.Add After:=Sheets(Sheets.Count)
        ActiveSheet.Name = Sheets("temp").Cells(x, 1)
        Sheets(thisSheet).Select
        
        Range(Cells(3, 1), Cells(3, columnNames)).Select
        Range(Selection, Selection.End(xlDown)).Select
        Selection.AutoFilter
        ActiveSheet.Range(Cells(3, 1), Cells(lastRow, columnNames)).AutoFilter Field:=1, Criteria1:=Sheets("temp").Cells(x, 1)
        
        'Range(Cells(3, 1), Cells(3, columnNames)).Select
        Application.CutCopyMode = False
        Selection.Copy
        shName = Sheets("temp").Cells(x, 1)
        Sheets(shName).Select
        ActiveSheet.PasteSpecial
        ActiveSheet.Cells(1, 1).Select
        Sheets(thisSheet).Select
        ActiveSheet.ShowAllData
    Next x
    
    Sheets("temp").Select
    Application.DisplayAlerts = False
    ActiveWindow.SelectedSheets.Delete
    Application.DisplayAlerts = True
    Sheets(thisSheet).Select
    ActiveSheet.Cells(1, 1).Select
    Application.ScreenUpdating = True
    
    End Sub
    Last edited by pike; 11-10-2011 at 06:57 AM. Reason: add code tags for newbie pm rule

  2. #2
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: Copy and paste into new sheet if VBA

    hi Kads
    You could clean up the code by removing the "Select" method and replacing them with "With" statments

    You can loop the two sheets by

    For Each xsheet In VBA.Array("Sheetname", non resources")
          Sheets(xsheet).Select
        
        Range(Cells(3, 1), Cells(3, columnNames)).Select
        Range(Selection, Selection.End(xlDown)).Select
        Selection.AutoFilter
        ActiveSheet.Range(Cells(3, 1), Cells(lastRow, columnNames)).AutoFilter Field:=1, Criteria1:=Sheets("temp").Cells(x, 1)
        
        'Range(Cells(3, 1), Cells(3, columnNames)).Select
        Application.CutCopyMode = False
        Selection.Copy
        shName = Sheets("temp").Cells(x, 1)
        Sheets(shName).Select
        ActiveSheet.PasteSpecial
        ActiveSheet.Cells(1, 1).Select
        Sheets(thisSheet).Select
     Next
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

+ 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