Merging spreadsheets

brickleul

New Member
Joined
Jul 29, 2014
Messages
4
Hi,

I'm looking to merge two sheets , a data consolidation. I have the following structure

Sheet1 [TABLE="width: 500"]
<tbody>[TR]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[/TR]
[TR]
[TD]discuss with client [/TD]
[TD]EA-11-99379 [/TD]
[/TR]
[TR]
[TD]request documents [/TD]
[TD]FA-12-11458[/TD]
[/TR]
[TR]
[TD]rescheduled[/TD]
[TD]GC-12-87663[/TD]
[/TR]
[TR]
[TD]request ASPC[/TD]
[TD]DL-11-110677[/TD]
[/TR]
</tbody>[/TABLE]

Sheet2
[TABLE="width: 500"]
<tbody>[TR]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[TD="align: center"]D[/TD]
[/TR]
[TR]
[TD]EA-11-99379 [/TD]
[TD]CAR[/TD]
[TD]BMW[/TD]
[TD]John[/TD]
[/TR]
[TR]
[TD]EA-11-99379 [/TD]
[TD]RAR[/TD]
[TD]BMW[/TD]
[TD]John[/TD]
[/TR]
[TR]
[TD]FA-12-11458[/TD]
[TD]CAR[/TD]
[TD]OPEL[/TD]
[TD]Emily[/TD]
[/TR]
[TR]
[TD]GC-12-87663[/TD]
[TD]RATT[/TD]
[TD]FORD[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]FA-12-11458[/TD]
[TD]RAR[/TD]
[TD]OPEL[/TD]
[TD]John[/TD]
[/TR]
[TR]
[TD]EA-11-99379 [/TD]
[TD]RATT[/TD]
[TD]BMW[/TD]
[TD]Denis[/TD]
[/TR]
</tbody>[/TABLE]

What I'm looking for is the following result or something similar:

[TABLE="width: 500"]
<tbody>[TR]
[TD]discuss with client [/TD]
[TD]EA-11-99379 [/TD]
[TD]CAR[/TD]
[TD]BMW[/TD]
[TD]John[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]RAR[/TD]
[TD]BMW[/TD]
[TD]John[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]RATT[/TD]
[TD]BMW[/TD]
[TD]Denis[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]request documents [/TD]
[TD]FA-12-11458[/TD]
[TD]CAR[/TD]
[TD]OPEL[/TD]
[TD]Emily[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]RAR[/TD]
[TD]OPEL[/TD]
[TD]John[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]rescheduled[/TD]
[TD]GC-12-87663[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]


A short legend Sheet 1 : Col. A is the task ,Col B is the file no.
Sheet2: A-file no. , B-file type , C- client ; D- assigned person ( can be blank)


Can anyone help me with an idea? For now we designed one person to check task by task and send to appropriate person but we have hundreds of task so any help is very welcome. Thanks
 
Try this:-
Your Data on sheet 1 and sheets2 as per thread
Data in both sheets starts row2.
Results start sheet3, row 2.
Code:
[COLOR="Navy"]Sub[/COLOR] MG28Aug52
[COLOR="Navy"]Dim[/COLOR] Rng1            [COLOR="Navy"]As[/COLOR] Range
[COLOR="Navy"]Dim[/COLOR] Dn              [COLOR="Navy"]As[/COLOR] Range
[COLOR="Navy"]Dim[/COLOR] n               [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Integer[/COLOR]
[COLOR="Navy"]Dim[/COLOR] Rng2            [COLOR="Navy"]As[/COLOR] Range
[COLOR="Navy"]Dim[/COLOR] Dic             [COLOR="Navy"]As[/COLOR] Object
[COLOR="Navy"]Dim[/COLOR] Q               [COLOR="Navy"]As[/COLOR] Variant
[COLOR="Navy"]Dim[/COLOR] Ray             [COLOR="Navy"]As[/COLOR] Variant
[COLOR="Navy"]Dim[/COLOR] k               [COLOR="Navy"]As[/COLOR] Variant
[COLOR="Navy"]Dim[/COLOR] G               [COLOR="Navy"]As[/COLOR] Range
[COLOR="Navy"]Dim[/COLOR] c               [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Long[/COLOR]


[COLOR="Navy"]With[/COLOR] Sheets("Sheet1")
    [COLOR="Navy"]Set[/COLOR] Rng1 = .Range(.Range("B2"), .Range("B" & Rows.Count).End(xlUp))
[COLOR="Navy"]End[/COLOR] With
[COLOR="Navy"]With[/COLOR] Sheets("Sheet2")
    [COLOR="Navy"]Set[/COLOR] Rng2 = .Range(.Range("A2"), .Range("A" & Rows.Count).End(xlUp))
[COLOR="Navy"]End[/COLOR] With


ReDim nray(1 To Rng2.Count * 2, 1 To 5)
    [COLOR="Navy"]Set[/COLOR] Dic = CreateObject("scripting.dictionary")
        Dic.CompareMode = vbTextCompare
            Ray = Array(Rng1, Rng2)
[COLOR="Navy"]For[/COLOR] n = 0 To 1
    [COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Ray(n)
        [COLOR="Navy"]If[/COLOR] Not Dic.Exists(Dn.Value) [COLOR="Navy"]Then[/COLOR]
            Dic.Add Dn.Value, Array(Dn, Nothing)
        [COLOR="Navy"]Else[/COLOR]
            Q = Dic.Item(Dn.Value)
                [COLOR="Navy"]If[/COLOR] Q(1) [COLOR="Navy"]Is[/COLOR] Nothing [COLOR="Navy"]Then[/COLOR]
                    [COLOR="Navy"]Set[/COLOR] Q(1) = Dn
                [COLOR="Navy"]Else[/COLOR]
                    [COLOR="Navy"]Set[/COLOR] Q(1) = Union(Q(1), Dn)
                [COLOR="Navy"]End[/COLOR] If
            Dic.Item(Dn.Value) = Q
        [COLOR="Navy"]End[/COLOR] If
    [COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]Next[/COLOR] n


 [COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] k [COLOR="Navy"]In[/COLOR] Dic.keys
    c = c + 1
    nray(c, 1) = Dic.Item(k)(0).Offset(, -1).Value
    nray(c, 2) = Dic.Item(k)(0).Value
    [COLOR="Navy"]If[/COLOR] Not Dic.Item(k)(1) [COLOR="Navy"]Is[/COLOR] Nothing [COLOR="Navy"]Then[/COLOR]
        [COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] G [COLOR="Navy"]In[/COLOR] Dic.Item(k)(1)
            nray(c, 3) = G.Offset(, 1).Value
            nray(c, 4) = G.Offset(, 2).Value
            nray(c, 5) = G.Offset(, 3).Value
            c = c + 1
        [COLOR="Navy"]Next[/COLOR] G
            c = c - 1
    [COLOR="Navy"]End[/COLOR] If
 [COLOR="Navy"]Next[/COLOR] k
 Sheets("Sheet3").Range("A2").Resize(c, 5) = nray
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top