+ Reply to Thread
Results 1 to 2 of 2

combine two sheet depend on sequence of first sheet

Hybrid View

  1. #1
    Registered User
    Join Date
    02-09-2012
    Location
    jakarta
    MS-Off Ver
    Excel 2007
    Posts
    1

    Question combine two sheet depend on sequence of first sheet

    I am newbie of VBA for excell. I had problem to combine two sheet which depend on first sheet. I want to solve this problem with VBA. Sheet "Plan" is for the reference and sheet "type" for the data to combine. Sheet result is the example of the combination that i want. Anyone can help me?PLAN.xlsx

  2. #2
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: combine two sheet depend on sequence of first sheet

    Hi fafa

    Welcome to the Forum!

    This code is in the attached and appears to do as you require. Let me know of issues.
    Option Explicit
    Sub Combine()
        Dim LCpl As Long
        Dim LCty As Long
        Dim LCr As Long
        Dim wsR As Worksheet
        Dim wsP As Worksheet
        Dim wsT As Worksheet
        Dim cel As Range
        Dim rng As Range
        Dim cell As Range
        Dim rng1 As Range
        Dim LRp As Long
        Dim LRr As Long
    
        Set wsP = Sheets("PLAN")
        Set wsT = Sheets("TYPE")
    
        LCpl = wsP.Cells(1, Columns.Count).End(xlToLeft).Column
        LCty = wsT.Cells(1, Columns.Count).End(xlToLeft).Column
    
        Application.ScreenUpdating = False
        Application.DisplayAlerts = False
        On Error Resume Next
        Sheets("RESULT").Delete
        On Error GoTo 0
        Application.DisplayAlerts = True
        Worksheets.Add(after:=Worksheets(Worksheets.Count)).Name = "RESULT"
        Set wsR = Sheets("RESULT")
    
        With wsR
            .Cells(1, 1).Resize(1, LCty).Value = wsT.Cells(1, 1).Resize(1, LCty).Value
            LCr = .Cells(1, .Columns.Count).End(xlToLeft).Column + 1
            .Cells(1, LCr).Resize(1, LCpl).Value = wsP.Cells(1, 3).Resize(1, LCpl).Value
            .Cells(1, LCr).Resize(1, LCpl).NumberFormat = "d-mmm"
            wsT.UsedRange.Offset(1, 0).Copy
            .Cells(2, 1).PasteSpecial
            Application.CutCopyMode = False
        End With
    
        For Each cel In wsP.Range(("B2"), wsP.Range("B2").End(xlDown))
            With wsR
                .AutoFilterMode = False
                .Range(("C1"), .Range("C1").End(xlDown)).AutoFilter Field:=1, _
                        Criteria1:=cel
                Set rng = wsR.AutoFilter.Range.Columns(1)
                Set rng = rng.Offset(1, 0).Resize(rng.Rows.Count - 1, 1)
                Set rng1 = rng.SpecialCells(xlVisible)
                For Each cell In rng1
                    cell.Offset(0, 2).Resize(1, LCpl).Value = cel.Offset(0, 1).Resize(1, LCpl).Value
                Next
                .AutoFilterMode = False
            End With
        Next cel
    
        With wsP
            LRp = .Cells.Find("*", .Cells(Rows.Count, .Columns.Count), SearchOrder:=xlByRows, _
                    SearchDirection:=xlPrevious).Row
            Application.AddCustomList ListArray:=.Range("A2:A" & LRp)
        End With
    
        With wsR
            LRr = .Cells.Find("*", .Cells(Rows.Count, .Columns.Count), SearchOrder:=xlByRows, _
                    SearchDirection:=xlPrevious).Row
            LCr = .Cells(1, .Columns.Count).End(xlToLeft).Column
            .Range(.Cells(1, 1), .Cells(LRr, LCr)).Sort Key1:=.Cells(2, 1), Order1:=xlAscending, Header:=xlGuess, _
                    OrderCustom:=Application.CustomListCount + 1, MatchCase:=False, _
                    Orientation:=xlTopToBottom, DataOption1:=xlSortNormal
        End With
        Application.DeleteCustomList Application.CustomListCount
        Application.ScreenUpdating = True
    End Sub
    Attached Files Attached Files
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

+ 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